| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
There was a problem hiding this comment.
I have some minor comments.
Sorry, something went wrong.
There was a problem hiding this comment.
This should be wrapped at 80 chars.
Sorry, something went wrong.
There was a problem hiding this comment.
I think PyTuple_GET_SIZE() should be used here.
Sorry, something went wrong.
There was a problem hiding this comment.
i++
Sorry, something went wrong.
There was a problem hiding this comment.
IMO, this check for res > 0 should not be included.
Sorry, something went wrong.
There was a problem hiding this comment.
Why?
Sorry, something went wrong.
COMPARE_OP for rich comparisons IS_OP for 'is' and 'is not' tests CONTAINS_OP for 'in' and 'is not' tests JUMP_IF_NOT_EXC_MATCH for checking exceptions in 'try-except' statements.
…ythonGH-17754) Break up COMPARE_OP into four logically distinct opcodes: * COMPARE_OP for rich comparisons * IS_OP for 'is' and 'is not' tests * CONTAINS_OP for 'in' and 'is not' tests * JUMP_IF_NOT_EXC_MATCH for checking exceptions in 'try-except' statements.
| Back | FazBrowse Home | New Git URL |
Breaks up COMPARE_OP into four logically distinct opcodes:
This improves the clarity of the interpreter and should provide a modest speedup.
https://bugs.python.org/issue39156