[issue24328] Extension modules with single-letter names can't be loaded

2015-05-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8428cb297d15 by Benjamin Peterson in branch '3.5': use assert method (#24328) https://hg.python.org/cpython/rev/8428cb297d15 -- ___ Python tracker

[issue24328] Extension modules with single-letter names can't be loaded

2015-05-29 Thread Martin Panter
Martin Panter added the comment: Two minor comments on Reitveld. Looks like you alreay fixed one of them in the actual commit. -- nosy: +vadmium type: -> behavior ___ Python tracker __

[issue24328] Extension modules with single-letter names can't be loaded

2015-05-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 784f372d701a by Benjamin Peterson in branch '3.5': fix importing one char extension modules (closes #24328) https://hg.python.org/cpython/rev/784f372d701a New changeset d89bab1f160e by Benjamin Peterson in branch 'default': merge 3.5 (#24328) https:

[issue24328] Extension modules with single-letter names can't be loaded

2015-05-29 Thread R. David Murray
Changes by R. David Murray : -- priority: normal -> release blocker stage: -> commit review ___ Python tracker ___ ___ Python-bugs-li

[issue24328] Extension modules with single-letter names can't be loaded

2015-05-29 Thread Petr Viktorin
New submission from Petr Viktorin: A regression in the PEP 489 implementation prevents loading extension modules with single-character names (because length-1 bytestrings are interned). Here is a fix. It would be great to have it in 3.5.0b2. -- files: fix-short-names.patch keywords: pa