You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
17 lines
519 B
Python
17 lines
519 B
Python
# In Python 3.3+ this uses grammar rule
|
|
# compare_chained2 ::= expr COMPARE_OP RETURN_VALUE
|
|
# In Python 3.6 uses this uses grammar rule
|
|
# compare_chained2 ::= expr COMPARE_OP come_froms JUMP_FORWARD
|
|
|
|
# Seen in Python 3.3 ipaddress.py
|
|
|
|
# RUNNABLE!
|
|
def _is_valid_netmask(netmask):
|
|
return 0 <= netmask <= 10
|
|
|
|
# There were also bugs in 2.6- involving the use of "or" twice in its "or"
|
|
# detections
|
|
|
|
# See in 2.6.9 quopri.py ishex():
|
|
assert not '0' <= __file__ <= '9' or 'a' <= __file__ <= 'f' or 'A' <= __file__ <= 'F'
|