[issue37675] 2to3 doesn't work when run from a zipfile

2019-07-24 Thread miss-islington
miss-islington added the comment: New changeset 69802f6163c9f18ca0e0b9c4c43a49365fc63e2d by Miss Islington (bot) in branch '3.8': closes bpo-37675: Use pkgutil.iter_modules to find fixers in a package rather than listdir. (14942) https://github.com/python/cpython/commit/69802f6163c9f18ca0e0b

[issue37675] 2to3 doesn't work when run from a zipfile

2019-07-24 Thread miss-islington
miss-islington added the comment: New changeset 53639dd55a0d5b3b7b4ef6ae839a98008f22e2d3 by Miss Islington (bot) in branch '2.7': closes bpo-37675: Use pkgutil.iter_modules to find fixers in a package rather than listdir. (14942) https://github.com/python/cpython/commit/53639dd55a0d5b3b7b4ef

[issue37675] 2to3 doesn't work when run from a zipfile

2019-07-24 Thread miss-islington
miss-islington added the comment: New changeset 9194a20a5b0b933a2a43ce0e81becbf8f0356314 by Miss Islington (bot) in branch '3.7': closes bpo-37675: Use pkgutil.iter_modules to find fixers in a package rather than listdir. (14942) https://github.com/python/cpython/commit/9194a20a5b0b933a2a43c

[issue37675] 2to3 doesn't work when run from a zipfile

2019-07-24 Thread miss-islington
Change by miss-islington : -- pull_requests: +14717 pull_request: https://github.com/python/cpython/pull/14945 ___ Python tracker ___ __

[issue37675] 2to3 doesn't work when run from a zipfile

2019-07-24 Thread miss-islington
Change by miss-islington : -- pull_requests: +14715 pull_request: https://github.com/python/cpython/pull/14943 ___ Python tracker ___ __

[issue37675] 2to3 doesn't work when run from a zipfile

2019-07-24 Thread miss-islington
Change by miss-islington : -- pull_requests: +14716 pull_request: https://github.com/python/cpython/pull/14944 ___ Python tracker ___ __

[issue37675] 2to3 doesn't work when run from a zipfile

2019-07-24 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset 93e8aa62cfd0a61efed4a61a2ffc2283ae986ef2 by Benjamin Peterson in branch 'master': closes bpo-37675: Use pkgutil.iter_modules to find fixers in a package rather than listdir. (14942) https://github.com/python/cpython/commit/93e8aa62cfd0a61efe

[issue37675] 2to3 doesn't work when run from a zipfile

2019-07-24 Thread Benjamin Peterson
Change by Benjamin Peterson : -- keywords: +patch pull_requests: +14714 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14942 ___ Python tracker __

[issue37675] 2to3 doesn't work when run from a zipfile

2019-07-24 Thread Benjamin Peterson
New submission from Benjamin Peterson : get_all_fix_names does listdir() to find fixers. That breaks if the standard library is in a zipfile. It shouldn't be hard to replace this with pkgutil.iter_modules. -- assignee: benjamin.peterson components: 2to3 (2.x to 3.x conversion tool) me