Files
codeql/python/ql/test/modelling/TopLevel.py
Rasmus Lerchedahl Petersen 9cca1b294c Python: Add test cases
2024-06-27 16:33:23 +02:00

11 lines
210 B
Python

from MyPackage import Foo, ModuleWithAll
def top_level_function(x, /, y, *, z):
return [x, y, z]
top_level_value = Foo.C1()
iC2 = Foo.C3.get_C2_instance()
f = ModuleWithAll.Foo()
b = ModuleWithAll.Bar()