[issue24631] Regression in timeit with multyline setup

2015-07-15 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker ___

[issue24631] Regression in timeit with multyline setup

2015-07-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset fce682a493e7 by Serhiy Storchaka in branch '3.5': Issue #24631: Fixed regression in the timeit modulu with multyline setup. https://hg.python.org/cpython/rev/fce682a493e7 New changeset 0b04e5689c33 by Serhiy Storchaka in branch 'default': Issue #246

[issue24631] Regression in timeit with multyline setup

2015-07-15 Thread Brett Cannon
Brett Cannon added the comment: Patch LGTM -- stage: patch review -> commit review ___ Python tracker ___ ___ Python-bugs-list mailing

[issue24631] Regression in timeit with multyline setup

2015-07-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Oh, sorry. Here is it. -- keywords: +patch stage: needs patch -> patch review Added file: http://bugs.python.org/file39925/timeit_multiline_setup.patch ___ Python tracker ___

[issue24631] Regression in timeit with multyline setup

2015-07-14 Thread Brett Cannon
Brett Cannon added the comment: There's no patch to review. -- nosy: +brett.cannon stage: patch review -> needs patch ___ Python tracker ___ _

[issue24631] Regression in timeit with multyline setup

2015-07-13 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Issue5633 introduced a regression in 3.5. $ ./python -m timeit -s "a = 1" -s "b = 2" Traceback (most recent call last): File "/home/serhiy/py/cpython-3.5/Lib/runpy.py", line 170, in _run_module_as_main "__main__", mod_spec) File "/home/serhiy/py/cpy