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

13 lines
307 B
Python

import math
angle = 0.01
sin(angle) # NameError: name 'sin' is not defined (function imported from 'math')
math.sin(angle) # 'sin' function now correctly defined
math.tan(angel) # NameError: name 'angel' not defined (typographic error)
math.tan(angle) # Global variable now correctly defined