[issue16191] ceval cleanup

2016-07-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6cf4386de3cc by Martin Panter in branch '3.5': Issue #16191: Fix up references to renamed variables https://hg.python.org/cpython/rev/6cf4386de3cc New changeset c10fe99afced by Martin Panter in branch 'default': Issue #16191: Merge comment fixes

[issue16191] ceval cleanup

2012-10-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: I won't examine the patch in detail, but the cleanup is welcome and I trust you (and the test suite :-)) that it works fine. -- nosy: +pitrou ___ Python tracker rep...@bugs.python.org

[issue16191] ceval cleanup

2012-10-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset ac30a1b1cf17 by Benjamin Peterson in branch 'default': ceval cleanup http://hg.python.org/cpython/rev/ac30a1b1cf17 -- nosy: +python-dev resolution: - fixed stage: - committed/rejected status: open - closed

[issue16191] ceval cleanup

2012-10-12 Thread Dave Malcolm
Changes by Dave Malcolm dmalc...@redhat.com: -- nosy: +dmalcolm ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16191 ___ ___ Python-bugs-list

[issue16191] ceval cleanup

2012-10-10 Thread Benjamin Peterson
New submission from Benjamin Peterson: The attached patch - Puts every opcode in its own block - Removes the infamous one variable names x, v, w, u and replaces them with local variables. - forces every opcode to end in DISPATCH() or goto error - cleans up a few minor other things --