Files
codeql/python/ql/test/3/query-tests/Expressions/Formatting/test.py
2019-02-08 15:13:17 +00:00

6 lines
101 B
Python

def format_starred(t):
return "%x %x %x" % (0, *t)
def ascii(a, b):
return "%a %x" % (a, b)