mirror of
https://github.com/github/codeql.git
synced 2026-06-14 17:31:09 +02:00
16 lines
166 B
Python
16 lines
166 B
Python
|
|
|
|
__all__ = [ "x", "y", "z", "module", "w" ] # $ Alert[py/undefined-export]
|
|
|
|
x = 1
|
|
if 0:
|
|
y = 2
|
|
|
|
import package.module
|
|
|
|
def init():
|
|
global w
|
|
w = 1
|
|
|
|
init()
|