Files
codeql/python/ql/src/Expressions/NonPortableComparisonUsingIs.py
2018-11-19 15:10:42 +00:00

9 lines
164 B
Python

CONSTANT = 12
def equals_to_twelve(x):
return x is CONSTANT
#This works in CPython, but might not for other implementations.
print (equals_to_twelve(5 + 7))