[issue19887] Path.resolve() fails on complex symlinks

2013-12-11 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- assignee: - pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19887 ___ ___

[issue19918] PureWindowsPath.relative_to() is not case insensitive

2013-12-11 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- assignee: - pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19918 ___ ___

[issue19921] Path.mkdir(0, True) always fails

2013-12-11 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- assignee: - pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19921 ___ ___

[issue19570] distutils' Command.ensure_dirname fails on Unicode

2013-12-11 Thread Doug Hellmann
Changes by Doug Hellmann doug.hellm...@gmail.com: -- nosy: +doughellmann ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19570 ___ ___

[issue19915] int.bit_at(n) - Accessing a single bit in O(1)

2013-12-11 Thread anon
anon added the comment: Thank you! I will try to help in ways that I can such as testing. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19915 ___

[issue19944] Make importlib.find_spec load packages as needed

2013-12-11 Thread Eric Snow
Eric Snow added the comment: It looks like there are two concepts at play though: 1. side-effect-free vs. may-have-side-effects 2. just-find-the-spec-dangit vs. find-the-spec-relative-to-submodule-search-locations-I-already-know In the case of #1, providing the path is just a means to an end.

[issue19828] test_site fails with -S flag

2013-12-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset 40884256f8dd by Zachary Ware in branch '3.3': Issue #19828: Fixed test_site when the whole suite is run with -S. http://hg.python.org/cpython/rev/40884256f8dd New changeset 90834ad91d56 by Zachary Ware in branch 'default': Issue #19828: Merge with

[issue19828] test_site fails with -S flag

2013-12-11 Thread Zachary Ware
Zachary Ware added the comment: Fixed. Thank you Vajrasky for raising the issue, and David for the much better wording. -- assignee: - zach.ware resolution: - fixed stage: - committed/rejected status: open - closed versions: +Python 3.3 ___

[issue15027] Faster UTF-32 encoding

2013-12-11 Thread Gregory P. Smith
Gregory P. Smith added the comment: one comment to address on the review, otherwise after addressing that I believe this is ready to go in for 3.4. -- nosy: +gregory.p.smith priority: low - normal ___ Python tracker rep...@bugs.python.org

[issue19955] When adding .PY and .PYW to PATHEXT, it replaced string instead of appending

2013-12-11 Thread nickhil rokkam
New submission from nickhil rokkam: Following installer overwrote the PATHEXT string after selecting the add to path installation option. http://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi -- components: Installation files: python-3.3.3.amd64.msi messages: 205941 nosy:

[issue19956] inspect.getsource(obj.foo) fails when foo is an injected method constructed from another method

2013-12-11 Thread Muhammad Tauqir Ahmad
New submission from Muhammad Tauqir Ahmad: If a method `foo` of object instance `obj` is injected into it using a method from a different object instance, `inspect.getsource(obj.foo)` fails with the error message: TypeError: bound method Foo.say of __main__.Foo object at 0x7fd348662cd0 is

[issue19955] When adding .PY and .PYW to PATHEXT, it replaced string instead of appending

2013-12-11 Thread Ned Deily
Changes by Ned Deily n...@acm.org: -- components: +Windows nosy: +loewis ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19955 ___ ___

[issue19944] Make importlib.find_spec load packages as needed

2013-12-11 Thread Nick Coghlan
Nick Coghlan added the comment: Actually, I think you make a good point. importlib.find_spec should use the *import_module* signature (no path parameter, but with support for relative imports). If it is exposed at all, the one level only single step version should appear in importlib.machinery,

[issue19957] Minor refactor of Lib/email/encoders.py

2013-12-11 Thread Vajrasky Kok
New submission from Vajrasky Kok: In Lib/email/encoders.py: def encode_7or8bit(msg): Set the Content-Transfer-Encoding header to 7bit or 8bit. orig = msg.get_payload(decode=True) if orig is None: # There's no payload. For backwards compatibility we use 7bit

<    1   2   3