[issue20155] Regression test test_httpservers fails, hangs on Windows

2014-01-06 Thread Jeff Allen
New submission from Jeff Allen: When I run: start python -m test.test_httpservers test_request_line_trimming reports ERROR, and the test hangs at test_version_none. If I run a copy of the test in which the latter test is skipped with @unittest.skipIf(sys.platform == win32, ...), the error

[issue12641] Remove -mno-cygwin from distutils

2014-01-06 Thread Lewis Levin
Lewis Levin added the comment: This is broken for Python 2.7.4. Is it fixed in 2.7.6? gcc deprecated -mno-cygwin. It's not there any more. There shouldn't be a discussion. This is an incredibly poor example of how fragmentation and poor process result in poor quality open source

[issue12641] Remove -mno-cygwin from distutils

2014-01-06 Thread Antoine Pitrou
Antoine Pitrou added the comment: This is broken for Python 2.7.4. Is it fixed in 2.7.6? The fix is in 2.7.6, yes. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12641 ___

[issue1322] platform.dist() has unpredictable result under Linux

2014-01-06 Thread Vajrasky Kok
Vajrasky Kok added the comment: Thanks for the review. Attached the patch to address Marc-Andre Lemburg's concern. -- Added file: http://bugs.python.org/file4/deprecate_platform_dist_v2.patch ___ Python tracker rep...@bugs.python.org

[issue19713] Deprecate various things in importlib thanks to PEP 451

2014-01-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset 37caaf21f827 by Eric Snow in branch 'default': Issue 19713: Add PEP 451-related deprecations. http://hg.python.org/cpython/rev/37caaf21f827 -- ___ Python tracker rep...@bugs.python.org

[issue19703] Update pydoc to PEP 451

2014-01-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset f67ccb4490ea by Eric Snow in branch 'default': Issue #19703: Update pydoc to use the new importer APIs. http://hg.python.org/cpython/rev/f67ccb4490ea -- nosy: +python-dev ___ Python tracker

[issue19703] Update pydoc to PEP 451

2014-01-06 Thread Eric Snow
Changes by Eric Snow ericsnowcurren...@gmail.com: -- resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19703

[issue19713] Deprecate various things in importlib thanks to PEP 451

2014-01-06 Thread Eric Snow
Eric Snow added the comment: Larry: There wasn't any API change for this issue. It was a matter of fixing up places that were still using find_module/find_loader/load_module. -- resolution: - fixed stage: test needed - committed/rejected status: open - closed

[issue19713] Deprecate various things in importlib thanks to PEP 451

2014-01-06 Thread Eric Snow
Eric Snow added the comment: Also: changeset: 88332:bfcbe41e892d4451b53bb5674fc4fa4ae791ec8c user:Eric Snow ericsnowcurren...@gmail.com date:Mon Jan 06 20:42:59 2014 -0700 summary: Remove more usage of APIs deprecated by PEP 451. --

[issue20125] We need a good replacement for direct use of load_module(), post-PEP 451

2014-01-06 Thread Eric Snow
Eric Snow added the comment: Yeah, waiting on this until 3.5 is fine with me. Arfrever brought it up so I at least wanted to track it. -- stage: - needs patch versions: +Python 3.5 -Python 3.4 ___ Python tracker rep...@bugs.python.org

[issue20156] bz2.BZ2File.read() does not treat growing input file properly

2014-01-06 Thread Joshua Chia
New submission from Joshua Chia: When using bz2.BZ2File to read an input file that is growing slowly, repeated read()ing eventually catches up to the end and subsequently fails to produce any more data while the input file continues growing. In 2.7, the symptom is that read() keeps returning

[issue19944] Make importlib.find_spec load packages as needed

2014-01-06 Thread Eric Snow
Eric Snow added the comment: Here's an update to the patch. It includes doc and test changes. It also moves find_spec() into importlib.util. (I'm removing the other patches since I don't consider them valid approaches any longer). -- Added file:

[issue19944] Make importlib.find_spec load packages as needed

2014-01-06 Thread Eric Snow
Eric Snow added the comment: (...and to reduce any confusion on which patch is under consideration.) -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19944 ___

[issue19944] Make importlib.find_spec load packages as needed

2014-01-06 Thread Eric Snow
Changes by Eric Snow ericsnowcurren...@gmail.com: Removed file: http://bugs.python.org/file33112/issue19944-find-spec-mirror-import-module-simple.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19944

[issue19944] Make importlib.find_spec load packages as needed

2014-01-06 Thread Eric Snow
Changes by Eric Snow ericsnowcurren...@gmail.com: Removed file: http://bugs.python.org/file33111/issue19944-find-spec-mirror-import-module.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19944

[issue19944] Make importlib.find_spec load packages as needed

2014-01-06 Thread Eric Snow
Changes by Eric Snow ericsnowcurren...@gmail.com: Removed file: http://bugs.python.org/file33087/issue19944-find-spec-parent-module.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19944 ___

[issue19944] Make importlib.find_spec load packages as needed

2014-01-06 Thread Eric Snow
Changes by Eric Snow ericsnowcurren...@gmail.com: Removed file: http://bugs.python.org/file33299/issue19944-find-spec-mirror-import-module-direct.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19944

[issue18864] Implementation for PEP 451 (importlib.machinery.ModuleSpec)

2014-01-06 Thread Eric Snow
Eric Snow added the comment: About the only thing left for this ticket is to finish up writing a few tests and round out some documentation. -- dependencies: -Update pickle to take advantage of PEP 451, Update zipimport for PEP 451 ___ Python

[issue18864] Implementation for PEP 451 (importlib.machinery.ModuleSpec)

2014-01-06 Thread Eric Snow
Eric Snow added the comment: There are a few lingering to-do comments that will need to be addressed as part of the remaining work: Lib/test/test_importlib/extension/test_case_sensitivity.py:# XXX find_spec tests Lib/test/test_importlib/extension/test_finder.py:# XXX find_spec tests

[issue19944] Make importlib.find_spec load packages as needed

2014-01-06 Thread Eric Snow
Eric Snow added the comment: If nothing else comes up, this will be the last PEP-451 functional change for 3.4. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19944 ___

<    1   2