[issue20652] Example in asyncio task gives resource warning

2014-02-16 Thread Vajrasky Kok
Vajrasky Kok added the comment: The patch also fixed some typos. s/Future in done/Future is done/ -- Added file: http://bugs.python.org/file34112/shut_off_resource_warning_run_forever_asyncio_example.patch ___ Python tracker

[issue20652] Example in asyncio task gives resource warning

2014-02-16 Thread Vajrasky Kok
Changes by Vajrasky Kok : Removed file: http://bugs.python.org/file34111/shut_off_resource_warning_run_forever_asyncio_example.patch ___ Python tracker ___ _

[issue20653] Pickle enums by name

2014-02-16 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Currently enums are pickled by values. It means that if the value of enum is platform depending, pickling one enum you can unpickle other enum on other platform. Here is a patch which makes enum pickling by name. It also get rid of not needed __getnewargs

[issue20654] Pydoc (and help) fails with socket.AddressFamily

2014-02-16 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: $ ./python -m pydoc socket.AddressFamily Traceback (most recent call last): File "/home/serhiy/py/cpython/Lib/runpy.py", line 171, in _run_module_as_main "__main__", mod_spec) File "/home/serhiy/py/cpython/Lib/runpy.py", line 86, in _run_code exec

[issue20621] Issue with zipimport in 3.3.4 and 3.4.0rc1

2014-02-16 Thread Paul Moore
Paul Moore added the comment: I have reports from virtualenv users that this is not happening on Linux, BTW. Could it be platform-specific somehow? Have the Unix users here been able to reproduce this? As regards a unit test, presumably we could ship a preconstructed zipfile in the test suite

[issue20621] Issue with zipimport in 3.3.4 and 3.4.0rc1

2014-02-16 Thread Paul Moore
Paul Moore added the comment: Re unit tests. Doh. Of *course* there are tests for importing from zipfiles. And I just ran them (on Windows) and they worked. So there's something more complex going on here and I don't know how you test for it, sorry (short of by trying an import from the pip wh

<    1   2