Files
codeql/python/ql/test/3/query-tests/Variables/undefined/UndefinedExport.py
2019-02-08 15:13:17 +00:00

16 lines
135 B
Python

__all__ = [ "x", "y", "z", "module", "w" ]
x = 1
if 0:
y = 2
import package.module
def init():
global w
w = 1
init()