[issue34673] make the eval loop more editable

2018-09-16 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset ddd1949fea59f256e51191540a4446f75ed608fa by Benjamin Peterson in branch 'master': closes bpo-34673: Tweaks to make ceval more editable. (GH-9289) https://github.com/python/cpython/commit/ddd1949fea59f256e51191540a4446f75ed608fa -- r

[issue34673] make the eval loop more editable

2018-09-13 Thread Benjamin Peterson
Change by Benjamin Peterson : -- keywords: +patch pull_requests: +8720 stage: -> patch review ___ Python tracker ___ ___ Python-bug

[issue34673] make the eval loop more editable

2018-09-13 Thread Benjamin Peterson
New submission from Benjamin Peterson : The TARGET macro in ceval.c hides control flow, most importantly the case statement. This confuses my editor and makes it indent things automatically improperly. This can be fixed by moving the case statements out of the TARGET macro. -- compon