[issue38715] Regression in compileall ddir parameter when recursing

2020-05-03 Thread Filipe Laíns
Filipe Laíns added the comment: Nevermind! I ran it with my system python binary, which is patched to against this. -- ___ Python tracker ___ _

[issue38715] Regression in compileall ddir parameter when recursing

2020-05-03 Thread Filipe Laíns
Filipe Laíns added the comment: Can this be closed? I can't reproduce. $ python -c 'from library.a.a import go; go()' Traceback (most recent call last): File "", line 1, in File "/usr/lib/a/a/__init__.py", line 2, in go raise AssertionError('dummy') AssertionError: dummy $ python -c 'f

[issue38715] Regression in compileall ddir parameter when recursing

2019-11-26 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +16879 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17398 ___ Python tracker ___ __

[issue38715] Regression in compileall ddir parameter when recursing

2019-11-06 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue38715] Regression in compileall ddir parameter when recursing

2019-11-05 Thread hetman
New submission from hetman : There appears to have been a regression introduced in the compileall library back with Python 3.5 as a result of commit f1a8df0ac98 . The issues appears when compiling a hierarchy of directories with the 'ddir' parameter specified (either in the compile_dir() func