mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +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()
|