mirror of
https://github.com/github/codeql.git
synced 2026-01-01 00:27:24 +01:00
16 lines
135 B
Python
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()
|