Files
codeql/python/ql/test/3/library-tests/calls/test.py
Taus 8ec414d454 Python: Add copy of internal Python 3 tests
Again, mostly extractor tests, and a single library test.
2024-04-15 12:30:01 +00:00

15 lines
223 B
Python

#Multi-version
a(1, 2, *[3,4])
b(**{'b': 2, 'd': 4})
c(1, *x, a=y, **p)
d(a=1,**y)
#Python 3.5 only
print(*[1], *[2], 3, *[4, 5])
fn(**{'a': 1, 'c': 3}, **{'b': 2, 'd': 4})
g(1, *x, 2, a=y, *z, b=3, **p)
h(**x,a=1,**y)