mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
7 lines
119 B
Python
7 lines
119 B
Python
|
|
#Interoperate with very old versions of Python (pre 2.3)
|
|
try:
|
|
True
|
|
except NameError:
|
|
__builtins__.True = 1==1
|