[issue20788] distutils.msvccompiler - flags are hidden inside initialize()

2014-02-26 Thread Matt Goodman
New submission from Matt Goodman: The flags that you need to compile against libpythonXX.lib are hidden inside of the distutils.msvccompiler class. This is ok if you want to use distutils to compile extensions against the binary, but other build systems need to run initialize() to get access

[issue1222585] C++ compilation support for distutils

2014-02-26 Thread Michael Crusoe
Changes by Michael Crusoe : -- nosy: +Michael.Crusoe ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue18052] IDLE 3.3.2 Windows taskbar icon regression

2014-02-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: The last installation I did now said to reboot to finish the installation, but I forget which it was. Since that was my alternative fix, this could perhaps be closed. I will try to check the coming installs. -- ___

[issue20429] 3.3.4rc1 install deleted Windows taskbar icons

2014-02-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: 3.3.4 installed without incident. So closing as presumed 'unique glitch'. -- resolution: -> works for me stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker

[issue16484] pydoc generates invalid docs.python.org link for xml.etree.ElementTree and other modules

2014-02-26 Thread Sean Rodman
Changes by Sean Rodman : Added file: http://bugs.python.org/file34238/issue16484_python3.3.patch ___ Python tracker ___ ___ Python-bugs-list m

[issue16484] pydoc generates invalid docs.python.org link for xml.etree.ElementTree and other modules

2014-02-26 Thread Sean Rodman
Sean Rodman added the comment: Here are the python3.2 and python3.3 patches. Please let me know if there is anything I need to change on these. -- Added file: http://bugs.python.org/file34237/issue16484_python3.2.patch ___ Python tracker

[issue14513] IDLE icon switched and switches on Windows taskbar

2014-02-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: This may be related to #18052. In any case, I do not have the problem now. -- resolution: -> out of date stage: -> committed/rejected status: open -> closed type: -> behavior ___ Python tracker

[issue10747] Include version info in Windows shortcuts

2014-02-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: I don't see any reason not to change the next release of all versions. My only concern is about the length and whether Windows has a limit for either the start menu or the taskbar tooltip popup The Doc server icon should be removed from 3.x until it is made to

[issue19470] email.header.Header - should not allow two newlines in a row

2014-02-26 Thread R. David Murray
R. David Murray added the comment: Having thought further about this (prompted by a suggested fix by Varun Sharma), I'm going to reject it. The reason is that the email package in 3.2 compatibility mode still uses the Header object to encapsulate headers that have invalid binary data in them.

[issue20763] old sys.path_hooks importer does not work with Python 3.4.0rc1

2014-02-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5dec1604322c by Brett Cannon in branch 'default': Issue #20763: Fix importlib.machinery.PathFinder to support http://hg.python.org/cpython/rev/5dec1604322c -- nosy: +python-dev ___ Python tracker

[issue20789] [3.4] cherrypick 5dec1604322c

2014-02-26 Thread Brett Cannon
New submission from Brett Cannon: changeset 89406:5dec1604322c tip Issue #20763: Fix importlib.machinery.PathFinder to support PathEntryFinder instances which only define find_module(). Reported by Yukihiro Nakadaira. [#20763] author Brett Cannon dateWed, 26 Feb 2014 18:26:49 -0500 (19

[issue20789] [3.4] cherrypick 5dec1604322c

2014-02-26 Thread Brett Cannon
Changes by Brett Cannon : -- dependencies: +old sys.path_hooks importer does not work with Python 3.4.0rc1 ___ Python tracker ___ ___

[issue20763] old sys.path_hooks importer does not work with Python 3.4.0rc1

2014-02-26 Thread Brett Cannon
Brett Cannon added the comment: Cherrypick bug is http://bugs.python.org/issue20789 -- ___ Python tracker ___ ___ Python-bugs-list mai

[issue20763] old sys.path_hooks importer does not work with Python 3.4.0rc1

2014-02-26 Thread Brett Cannon
Brett Cannon added the comment: Committed for Larry to cherrypick into 3.4.0. No Misc/NEWS so that Larry doesn't have merge issues and since it will be covered by 3.4.0. -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue20776] Add tests for importlib.machinery.PathFinder

2014-02-26 Thread Brett Cannon
Changes by Brett Cannon : -- assignee: -> brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue20778] ModuleFinder.load_module skips incorrect number of bytes in pyc files

2014-02-26 Thread Brett Cannon
Changes by Brett Cannon : -- assignee: -> brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue17630] Create a pure Python zipfile/tarfile importer

2014-02-26 Thread Brett Cannon
Brett Cannon added the comment: The more I think about this, the less useful it seems to be. We need zipimport written in C for bootstrapping issues. If that's the case then time should be put into making that work and not duplicating the functionality. I'm going to leave this open but unassig

[issue20790] Make sure exec_module() implementations are documented

2014-02-26 Thread Brett Cannon
New submission from Brett Cannon: E.g. importlib.abc.InspectLoader() has load_module() deprecated by no equivalent exec_module() documented. Make sure that no other exec_module() instances have been added but undocumented. -- assignee: brett.cannon components: Documentation messages: 2

[issue20567] test_idle causes test_ttk_guionly 'can't invoke "event" command: application has been destroyed' messages from Tk

2014-02-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: Patch fixes problem on 3.3. I need to test 2.7 and add a note to idle_test/README that class widget attributes must be deleted because module may not be deleted, at least for a while. -- assignee: -> terry.reedy __

[issue20167] Exception on IDLE closing

2014-02-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: This has been left open to see if the undlying problem can be found. If #20567 is a guide, there might be a root.destroy that should be followed by del root. -- resolution: -> fixed stage: -> needs patch ___ Python

[issue20783] bytearray init fails when \x00 is present

2014-02-26 Thread Andrew P. Lentvorski, Jr.
Andrew P. Lentvorski, Jr. added the comment: Ayup, I are an idiot. Sorry. ggRAM = bytearray('\x00'*RAM_SIZE_BYTES) Works fine. -- status: open -> closed ___ Python tracker ___

[issue20783] bytearray init fails when \x00 is present

2014-02-26 Thread Andrew P. Lentvorski, Jr.
Changes by Andrew P. Lentvorski, Jr. : -- resolution: -> invalid ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue20501] fileinput module will read whole file into memory when using fileinput.hook_encoded

2014-02-26 Thread Vajrasky Kok
Vajrasky Kok added the comment: >From http://hg.python.org/cpython/rev/1a1a9d6fb278 +t1 = TESTFN +#t1 = writeTmp(1, ['A\nB\r\nC\rD+IKw-'], mode='wb') +self.addCleanup(safe_unlink, TESTFN) You left out the debugging statement. And this English statement: # Unlikely UTF-

[issue20790] Make sure exec_module() implementations are documented

2014-02-26 Thread R. David Murray
R. David Murray added the comment: It doesn't? I checked all the links that I made in the whatsnew entry when I made it, and importlib.abc.InspectLoader.exec_module takes me to an exec_module method entry under InspectLoader. -- nosy: +r.david.murray _

[issue17390] display python version on idle title bar

2014-02-26 Thread Westley Martínez
Westley Martínez added the comment: How about adding an optional argument to OutputWindow that specifies the title for the window? Or would this be more suitable for EditorWindow (which OutputWindow inherits from)? Either way, doing this would allow any OutputWindow to specify its own title.

[issue17390] display python version on idle title bar

2014-02-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: That looks like a sensible approach. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue6676] expat parser throws Memory Error when parsing multiple files

2014-02-26 Thread Ned Deily
Ned Deily added the comment: Thanks for the reminder, David. Here are patches for 3.x and 2.7 that include updated versions of the proposed pyexpat.c and test_pyexpat.py patches along with a doc update along the lines suggested by David. -- stage: -> patch review versions: -Python 3

[issue6676] expat parser throws Memory Error when parsing multiple files

2014-02-26 Thread Ned Deily
Changes by Ned Deily : Added file: http://bugs.python.org/file34241/issue6676_27.patch ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue20778] ModuleFinder.load_module skips incorrect number of bytes in pyc files

2014-02-26 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- keywords: +patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue20778] ModuleFinder.load_module skips incorrect number of bytes in pyc files

2014-02-26 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- keywords: +3.3regression -3.2regression, patch ___ Python tracker ___ ___ Python-b

<    1   2