Files
codeql/python/ql/test/3/extractor-tests/fstrings3.8/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

9 lines
144 B
Python

foo = 5
bar = "bar"
print(f'{foo=}')
print(f'{foo = }')
print(f'{bar.upper()=}')
print(f'*{foo=:+<20}*')
print(f'*{foo=:+<20}{bar.upper()=}*')