[issue21526] Support new booleans in Tkinter

2015-04-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 77e5623e22dd by Serhiy Storchaka in branch '2.7': Issue #21526: Skip test_booleans on Tcl 8.5. https://hg.python.org/cpython/rev/77e5623e22dd New changeset 3b8039c37b37 by Serhiy Storchaka in branch '3.4': Issue #21526: Skip test_booleans on Tcl

[issue23466] PEP 461: Inconsistency between str and bytes formatting of integers

2015-04-02 Thread Ethan Furman
Ethan Furman added the comment: b'%c' is still raising a TypeError. The error message is fine (%c requires an integer in range(256) or a single byte) but it should be an OverflowError for backwards compatibility. -- resolution: fixed - stage: resolved - needs patch status: closed -

[issue23854] qtconsole and all windows based python have issues loading

2015-04-02 Thread Ali Arar
New submission from Ali Arar: All of the sudden, all windows based python stopped working. qtconsole and spyder. Also, conda, pip, and easy_setup are issuing error messages. Below is the feedback I am getting. I uninstalled and reinstalled the package that was working perfectly fine.

[issue21319] WindowsRegistryFinder never added to sys.meta_path

2015-04-02 Thread Tim Golden
Tim Golden added the comment: Turns out to be non-issue after all! I was working through the import code for other reasons and noticed that the WindowsRegistryFinder was there. I'll spare you the complications of debugging the _bootstrap part of import, but basically the code in

[issue2175] Expat sax parser silently ignores the InputSource protocol

2015-04-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 84d49ad9109b by Serhiy Storchaka in branch '2.7': Issue #2175: Added tests for xml.sax.saxutils.prepare_input_source(). https://hg.python.org/cpython/rev/84d49ad9109b New changeset fa47897e7889 by Serhiy Storchaka in branch '3.4': Issue #2175:

[issue1483] xml.sax.saxutils.prepare_input_source ignores character stream in InputSource

2015-04-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Fixed in issue2175. -- resolution: - out of date stage: patch review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1483

[issue8027] distutils fail to determine c++ linker with unixcompiler if using ccache

2015-04-02 Thread Joshua J Cogliati
Joshua J Cogliati added the comment: Let me try and explain what is trying to be done in the original code, what the fix was, and then discuss some possible better solutions. Original code: if target_lang == c++ and self.compiler_cxx: linker[0] = self.compiler_cxx[0] Current code: if

[issue9026] argparse subcommands not printed in the same order they were added

2015-04-02 Thread ddve...@ucar.edu
ddve...@ucar.edu added the comment: You are right, this problem is not coming from python itself, but more from setuptools and its use by scoop. See https://github.com/soravux/scoop/issues/16 and http://stackoverflow.com/questions/29374044/ for details Regards, Davide Del Vento, NCAR

[issue2174] xml.sax.xmlreader does not support the InputSource protocol

2015-04-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Fixed in issue2175 (in 3.5 only). -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2174 ___ ___

[issue23466] PEP 461: Inconsistency between str and bytes formatting of integers

2015-04-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: OverflowError is for platform limitations (such as the size of machine word or addressed space). When limits are well defined and platform-independent, ValueError or may be TypeError are considered as better types. It would be better to change OverflowError

<    1   2