[issue14838] IDLE Will not load on reinstall

2012-05-18 Thread Martin v . Löwis
Martin v. Löwis added the comment: Can you please attach your idle.py, and/or figure out why it has a syntax error on line 1? -- ___ Python tracker ___

[issue14838] IDLE Will not load on reinstall

2012-05-18 Thread Martin v . Löwis
Martin v. Löwis added the comment: Ah, I think I know what happened. When I said "command line", I didn't mean "Python (command line)", but "CMD shell", as found in the start menu (i.e. cmd.exe). The line I gave you is, of course, invalid Python syntax. If you have never used the Windows co

[issue14847] AttributeError: NoneType has no attribute 'utf_8_decode'

2012-05-18 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Reproducing the issue is not too hard, see the example below. Does your program play with sys.modules? import sys b'x'.decode('utf-8') import locale; del locale.encodings # Not necessary with python2 del sys.modules['encodings.utf_8'], sys.modules['enc

[issue14848] os.rename should not be used

2012-05-18 Thread Vetoshkin Nikita
New submission from Vetoshkin Nikita : When I attempt to remove package with pysetup remove 'package-name' on Fedora 17 - it fails with: 'my-package' cannot be removed Error: [Errno 18] Invalid cross-device link strace'ing showed that there was an attempt to call rename from package dir into /

[issue14849] C implementation of ElementTree: Inheriting from Element breaks text member

2012-05-18 Thread Markus
New submission from Markus : Example Code to reproduce: from xml.etree import ElementTree as etree class xetree: cElement = etree.Element class Element(etree.Element): def __init__(self, tag, attrib=None): xetree.cElement.__init__(self, tag

[issue14849] C implementation of ElementTree: Inheriting from Element breaks text member

2012-05-18 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +eli.bendersky, ezio.melotti priority: normal -> release blocker stage: -> needs patch type: -> behavior ___ Python tracker ___ _

[issue13988] Expose the C implementation of ElementTree by default when importing ElementTree

2012-05-18 Thread Markus
Markus added the comment: New bug - C implementation of ElementTree: Inheriting from Element breaks text member http://bugs.python.org/issue14849 -- ___ Python tracker ___

[issue14818] C implementation of ElementTree: Some functions should support keyword arguments

2012-05-18 Thread Ezio Melotti
Ezio Melotti added the comment: Attached patch fixes Element constructor to accept 'attrib' as keyword arg. I couldn't find a way to make this work using PyArg_ParseTupleAndKeywords, so I ended up parsing the kwds by hand. While adding more tests I found out another difference with the Python

[issue1767933] Badly formed XML using etree and utf-16

2012-05-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Anyone can review the patch? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue14818] C implementation of ElementTree: Some functions should support keyword arguments

2012-05-18 Thread Ezio Melotti
Changes by Ezio Melotti : Removed file: http://bugs.python.org/file25628/issue14818-2.diff ___ Python tracker ___ ___ Python-bugs-list mailing

[issue14818] C implementation of ElementTree: Some functions should support keyword arguments

2012-05-18 Thread Ezio Melotti
Changes by Ezio Melotti : Added file: http://bugs.python.org/file25629/issue14818-2.diff ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue4489] shutil.rmtree is vulnerable to a symlink attack

2012-05-18 Thread Hynek Schlawack
Hynek Schlawack added the comment: I've implemented a _safe_rmtree which gets used if os.fwalk() and os.unlinkat() are available. Test suite still passes in regression mode both on Mac (= no effect) and Linux. Let me know if I missed something. -- assignee: -> hynek keywords: +needs

[issue4489] shutil.rmtree is vulnerable to a symlink attack

2012-05-18 Thread Petri Lehtinen
Petri Lehtinen added the comment: +Same a rmtree but uses safe functions to avoid race conditions ^ typo +onerror(os.unlinkat, os.path.join(path, name), sys.exc_info()) +onerror(os.fwalk, path, sys.exc_info()) The documentation currently stat

[issue8098] PyImport_ImportModuleNoBlock() may solve problems but causes others.

2012-05-18 Thread Antoine Pitrou
Antoine Pitrou added the comment: Python 3.3 now has per-module import locks, and PyImport_ImportModuleNoBlock simply redirects to PyImport_ImportModule. See issue9260. -- resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> A finer grained imp

[issue4489] shutil.rmtree is vulnerable to a symlink attack

2012-05-18 Thread Hynek Schlawack
Hynek Schlawack added the comment: Thanks Petri. I've added the missing s in my repo and attach a proposed separate doc patch, I'd like reviewed by someone whose English is better than mine. :) -- nosy: +ezio.melotti, georg.brandl Added file: http://bugs.python.org/file25631/rmtree-wi

[issue14472] .gitignore is outdated

2012-05-18 Thread Petri Lehtinen
Changes by Petri Lehtinen : -- nosy: +petri.lehtinen ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue14543] Upgrade OpenSSL on Windows to 0.9.8u

2012-05-18 Thread Martin v . Löwis
Martin v. Löwis added the comment: I have now upgraded OpenSSL to 0.9.8x for 2.7, to 1.0.0j for 3.2, and to 1.0.1c for 3.3. -- nosy: +loewis ___ Python tracker ___

[issue14543] Upgrade OpenSSL on Windows to 0.9.8u

2012-05-18 Thread Martin v . Löwis
Changes by Martin v. Löwis : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue14848] os.rename should not be used

2012-05-18 Thread Éric Araujo
Éric Araujo added the comment: How did you install my-package? -- versions: +3rd party, Python 3.3 -Python 2.7 ___ Python tracker ___ ___

[issue14848] os.rename should not be used

2012-05-18 Thread Vetoshkin Nikita
Vetoshkin Nikita added the comment: pysetup install. strace of removal looks like this: stat("/home/nekto0n/workspace/pillar/penv/lib/python2.7/site-packages/ygroup/__init__.py", {st_mode=S_IFREG|0664, st_size=0, ...}) = 0 rename("/home/nekto0n/workspace/pillar/penv/lib/python2.7/site-packages/

[issue14850] The inconsistency of codecs.charmap_decode

2012-05-18 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : codecs.charmap_decode behaves differently with native and user string as decode table. >>> import codecs >>> print(ascii(codecs.charmap_decode(b'\x00', 'replace', '\uFFFE'))) ('\ufffd', 1) >>> class S(str): pass ... >>> print(ascii(codecs.charmap_decode(b

[issue14850] The inconsistency of codecs.charmap_decode

2012-05-18 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue9260] A finer grained import lock

2012-05-18 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue14702] os.makedirs breaks under autofs directories

2012-05-18 Thread Andrew McNabb
Andrew McNabb added the comment: I see no evidence that this is a bug in Linux, and I think it's ridiculous to close it when a trivial one-line fix is available. I won't reopen it because it's obvious no one wants to address this. :( -- ___ Python

[issue12098] Child process running as debug on Windows

2012-05-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 347735ec92eb by Richard Oudkerk in branch 'default': #12098: Make multiprocessing's child processes inherit sys.flags on Windows http://hg.python.org/cpython/rev/347735ec92eb -- nosy: +python-dev ___ Pyt

[issue14702] os.makedirs breaks under autofs directories

2012-05-18 Thread Andrew McNabb
Andrew McNabb added the comment: I posted a bug report with the kernel here: https://bugzilla.kernel.org/show_bug.cgi?id=43262 -- ___ Python tracker ___ ___

[issue12098] Child process running as debug on Windows

2012-05-18 Thread Richard Oudkerk
Richard Oudkerk added the comment: > > Failure to build _multiprocessing will mean that multiprocessing cannot > > be imported. So if the function goes somewhere in multiprocessing then > > it makes running the test suite with multiple processes dependent on the > > building of _multiprocess

[issue14849] C implementation of ElementTree: Inheriting from Element breaks text member

2012-05-18 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue12098] Child process running as debug on Windows

2012-05-18 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Since multiprocessing also depends on threading, the change has broken > the "AMD64 Fedora without threads 3.x" buildbot. I had not realized > that the buildbots ran the test suite using multiple processes. They don't. It's only the import failing, so you sh

[issue14851] Python-2.6.8 install fails due to missing files

2012-05-18 Thread gene
New submission from gene : Hi, I've downloaded both source versions of Python for Mac 2.6.8 and have unziped them with Mac GUI or gunzip but all attempts fail due to build not finding files. First missing file is pyconfig.h which appears to be named pyconfig.h.in. When I remove the .in then ne

[issue14796] Calendar module test coverage improved

2012-05-18 Thread Oleg Plakhotnyuk
Changes by Oleg Plakhotnyuk : Removed file: http://bugs.python.org/file25562/test_calendar.patch ___ Python tracker ___ ___ Python-bugs-list m

[issue14796] Calendar module test coverage improved

2012-05-18 Thread Oleg Plakhotnyuk
Oleg Plakhotnyuk added the comment: I didn't event know that there is such a handy assertRaisesRegex context. Many thanks for pointing this out! -- Added file: http://bugs.python.org/file25632/test_calendar.patch ___ Python tracker

[issue12098] Child process running as debug on Windows

2012-05-18 Thread Antoine Pitrou
Antoine Pitrou added the comment: > > Since multiprocessing also depends on threading, the change has broken > > the "AMD64 Fedora without threads 3.x" buildbot. I had not realized > > that the buildbots ran the test suite using multiple processes. > > They don't. It's only the import failing,

[issue12098] Child process running as debug on Windows

2012-05-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2034b3de1144 by Antoine Pitrou in branch 'default': Move private function _args_from_interpreter_flags() to subprocess.py, so http://hg.python.org/cpython/rev/2034b3de1144 -- ___ Python tracker

[issue14715] test.support.DirsOnSysPath should be replaced by importlib.test.util.import_state

2012-05-18 Thread Brett Cannon
Brett Cannon added the comment: I see three options (which can be combined). One is to keep using something like the uncache context manager to make sure the expected modules get removed. Two is to check the keys of sys.modules at the end of a context manager and if there are new keys either

[issue1436] logging.config.fileConfig, NameError: name 'RotatingFileHandler' is not defined

2012-05-18 Thread Marc Abramowitz
Marc Abramowitz added the comment: I just ran into this issue with Python 2.5 (doesn't seem to be an issue in >= 2.6?) and for the benefit of anyone else, I'm copying the answer from `Vinay's Google Group post

[issue1436] logging.config.fileConfig, NameError: name 'RotatingFileHandler' is not defined

2012-05-18 Thread Marc Abramowitz
Marc Abramowitz added the comment: Or for a practical example, here's how I used the above technique to solve this problem in web2py: diff --git a/gluon/main.py b/gluon/main.py index 57bf647..2f69c6b 100644 --- a/gluon/main.py +++ b/gluon/main.py @@ -68,6 +68,13 @@ create_missing_folders() #

[issue14851] Python-2.6.8 install fails due to missing files

2012-05-18 Thread Ned Deily
Ned Deily added the comment: This is not the right place to get help for building or using Python (see, for example, http://www.python.org/community/lists/). That said, you should read the README files included in the source directory, in particular, the step about running ./configure. Ther

[issue14852] json and ElementTree parsers misbehave on streams containing more than a single object

2012-05-18 Thread Frederick Ross
New submission from Frederick Ross : When parsing something like 'xy' with xml.etree.ElementTree, or '{}{}' with json, these parser throw exceptions instead of reading a single element of the kind they understand off the stream (or throwing an exception if there is no element they understand)

[issue14788] Pdb debugs itself after ^C and a breakpoint is set anywhere

2012-05-18 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue14789] after continue, Pdb stops at a line without a breakpoint

2012-05-18 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue14792] setting a bp on current function, Pdb stops at next line although no bp

2012-05-18 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue14795] Pdb incorrectly handles a method breakpoint when module not imported

2012-05-18 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue14797] Deprecate imp.find_module()/load_module()

2012-05-18 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue14847] AttributeError: NoneType has no attribute 'utf_8_decode'

2012-05-18 Thread Jason R. Coombs
Jason R. Coombs added the comment: Thanks for the tip Amaury. Following that lead, I see that distribute does indeed have a sandbox module which attempts to sandbox sys.modules, which can break the encodings modules. I'm going to address the issue in distribute first, but I like the proposals

[issue14842] Link to function time() in the docs point to the time module

2012-05-18 Thread Petri Lehtinen
Petri Lehtinen added the comment: Seems that at least all links to the time() function in the time module point to the module (top of the module page) instead of the function. All references use the :func: role, so this must be an issue in Sphinx. Georg: Do you have a clue about this? --

[issue14808] Pdb does not stop at a breakpoint set on the line of a function definition

2012-05-18 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue14814] Implement PEP 3144 (the ipaddress module)

2012-05-18 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue14842] Link to function time() in the docs point to the time module

2012-05-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 40900f791469 by Petri Lehtinen in branch '2.7': Fix time.time() references in the time module docs http://hg.python.org/cpython/rev/40900f791469 New changeset d15f01b0c1a0 by Petri Lehtinen in branch '3.2': Fix time.time() references in the time mo

[issue14842] Link to function time() in the docs point to the time module

2012-05-18 Thread Petri Lehtinen
Petri Lehtinen added the comment: Georg: Nevermind, I got help from #python-dev :) -- ___ Python tracker ___ ___ Python-bugs-list mai

[issue14853] test_file.py depends on sys.stdin being unseekable

2012-05-18 Thread Gregory P. Smith
New submission from Gregory P. Smith : ./python Lib/test/test_file.py# passes ./python Lib/test/test_file.py , ) not raised == FAIL: testStdin (__main__.PyOtherFileTests)

[issue14798] pyclbr raises KeyError when the prefix of a dotted name is not a package

2012-05-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2d2079593212 by Petri Lehtinen in branch '2.7': #14798: pyclbr now raises ImportError instead of KeyError for missing packages http://hg.python.org/cpython/rev/2d2079593212 New changeset 895246f1a06a by Petri Lehtinen in branch '3.2': #14798: pyclb

[issue14798] pyclbr raises KeyError when the prefix of a dotted name is not a package

2012-05-18 Thread Petri Lehtinen
Petri Lehtinen added the comment: Fixed, thanks for the patch. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue14572] 2.7.3: sqlite module does not build on centos 5 and Mac OS X 10.4

2012-05-18 Thread Marc Abramowitz
Marc Abramowitz added the comment: Just to make this a tad easier, I put Joakim's patch into a gist: [marca@logger01.prod1 Python-2.7.3]$ pwd /home/marca/src/Python-2.7.3 [marca@logger01.prod1 Python-2.7.3]$ curl -sk https://raw.github.com/gist/2727063/ | patch -p1 pat

[issue14572] 2.7.3: sqlite module does not build on centos 5 and Mac OS X 10.4

2012-05-18 Thread Marc Abramowitz
Marc Abramowitz added the comment: curl -sk https://raw.github.com/gist/2727063/ | patch -p1 -- ___ Python tracker ___ ___ Python-bug

[issue14831] make r argument on itertools.combinations() optional

2012-05-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: permutations(i,r) has an obvious default length, len(i). For combinations(i,r), r = len(i), the return is i itself. Uninteresting. You are asking for something else, that combinations(i) be powerset(i), which is a different function. Powerset can be built fro

[issue14833] Copyright date in footer of /pypi says 2011

2012-05-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: This issue is invalid *here* because this tracker is for the CPython implementation and the documentation, not the python.org site. I have, however, sent a message to the pypi catalog-sig mailing list, which *is* the proper venue. Thanks for noticing. --

[issue14818] C implementation of ElementTree: Some functions should support keyword arguments

2012-05-18 Thread Markus
Markus added the comment: SubElement needs to handle the attrib keyword too. -- ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue14838] IDLE Will not load on reinstall

2012-05-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: If python itself runs, you can easily try this from inside the interpreter >>> from idlelib import idle This *should* bring up the Idle shell window. It just did for me on 64 bit Win7. If not, there *should* be an error traceback you can cut and paste here.

[issue14684] zlib set dictionary support inflateSetDictionary

2012-05-18 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Status of this feature?. Ready to integrate? -- ___ Python tracker ___ ___ Python-bugs-list mailin

[issue14684] zlib set dictionary support inflateSetDictionary

2012-05-18 Thread Éric Araujo
Changes by Éric Araujo : -- keywords: +needs review stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue14787] pkgutil.walk_packages returns extra modules

2012-05-18 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue14787] pkgutil.walk_packages returns extra modules

2012-05-18 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +brett.cannon, eric.smith, ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue14824] reprlib documentation references string module

2012-05-18 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo versions: +Python 3.2, Python 3.3 -Python 3.4 ___ Python tracker ___ ___ Python-bugs-li

[issue14824] reprlib documentation references string module

2012-05-18 Thread Jasper St. Pierre
Jasper St. Pierre added the comment: The documentation is just flat out wrong, actually: if ' ' in typename: parts = typename.split() typename = '_'.join(parts) The documentation is claiming the inverse. I don't know why we would ever have a space in a typename, ever (and

[issue14790] use packaging in setup.py

2012-05-18 Thread Tshepang Lekhonkhobe
Changes by Tshepang Lekhonkhobe : -- nosy: +tshepang ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue14834] A list of broken links on the python.org website

2012-05-18 Thread Tshepang Lekhonkhobe
Changes by Tshepang Lekhonkhobe : -- nosy: +tshepang ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue14845] list() != []

2012-05-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: It has been noted elsewhere (but I cannot find it) that 1) an uncaught StopIteration raised in an expression *within* a genexp is indistinguishable from the StopIteration raised *by* the genexp upon normal termination; and 2) this makes genexps different from

[issue14850] The inconsistency of codecs.charmap_decode

2012-05-18 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +doerwalter, lemburg ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue14840] Tutorial: Add a bit on the difference between tuples and lists

2012-05-18 Thread Zachary Ware
Zachary Ware added the comment: I'll go with foolhardy, or just "green" :P. I wasn't aware that this topic was quite as contentious as it seems to be. I agree that tuples and lists are similar. I was trying to keep my wording at "here's another way to look at things that you may not have tho

[issue7511] msvc9compiler.py: ValueError when trying to compile with VC Express

2012-05-18 Thread Piotr Dobrogost
Piotr Dobrogost added the comment: Just bumped into this issue when installing gevent 1.0b2 on Vista 64bit using pip. I think it would be worth to mention that although I'm not quite new to Python and in the past I already investigated issue with distutils not finding vcvarsall.bat (http://st

[issue9374] urlparse should parse query and fragment for arbitrary schemes

2012-05-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 79e6ff3d9afd by Senthil Kumaran in branch '2.7': Issue9374 - Generic parsing of query and fragment portion of urls for any scheme http://hg.python.org/cpython/rev/79e6ff3d9afd New changeset a9d43e21f7d8 by Senthil Kumaran in branch '3.2': Issue9374

[issue9374] urlparse should parse query and fragment for arbitrary schemes

2012-05-18 Thread Senthil Kumaran
Senthil Kumaran added the comment: Thanks for raising this issue, Nick. Yes, I verified in both RFC 3986 and 2396 and realized we can safely adopt a generic parsing system for query and fragment portions of the urls for any scheme. Since it was supported in earlier versions too, I felt it was

[issue14823] Simplify threading.Lock.acquire() description

2012-05-18 Thread Q
Q added the comment: My bad. That's indeed what I did. Won't repeat the mistake, sorry. -- ___ Python tracker ___ ___ Python-bugs-lis

[issue14838] IDLE Will not load on reinstall

2012-05-18 Thread Cain
Cain added the comment: Terry - just ran that command as you suggested and it did bring up idle, however also reported errors in the command window: Warning: configHandler.py - IdleConf.GetThemeDict - problem retrieving theme element 'stderr-foreground' from theme 'desert'. returning defa

[issue14836] Add next(iter(o)) to set.pop, dict.popitem entries.

2012-05-18 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- assignee: docs@python -> rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue14838] IDLE Will not load on reinstall

2012-05-18 Thread Roger Serwy
Roger Serwy added the comment: The reason why IDLE failed to launch is due to stderr=None when using pythonw.exe. The first Warning message cause IDLE to abort. See issue13582 for more details and a solution to the problem of IDLE not starting. Cain, your home directory should contain a folde

[issue14838] IDLE Will not load on reinstall

2012-05-18 Thread Martin v . Löwis
Martin v. Löwis added the comment: Closing as a duplicate. Roger, thanks for the analysis. -- resolution: -> duplicate status: open -> closed superseder: -> IDLE and pythonw.exe stderr problem ___ Python tracker

[issue14684] zlib set dictionary support inflateSetDictionary

2012-05-18 Thread Nadeem Vawda
Nadeem Vawda added the comment: The code should be changed to use the buffer API (instead of accepting only bytes objects). Other than that, I think it's ready for integration. -- ___ Python tracker __

[issue14838] IDLE Will not load on reinstall

2012-05-18 Thread Cain
Cain added the comment: Awesome, that resolved it. Simply started idle through the command window, then changed the theme back to the default. Thanks Roger. -- ___ Python tracker _