black/tests/data/numeric_literals_py2.py
2021-04-25 19:13:23 +02:00

17 lines
176 B
Python

#!/usr/bin/env python2.7
x = 123456789L
x = 123456789l
x = 123456789
x = 0xb1acc
# output
#!/usr/bin/env python2.7
x = 123456789L
x = 123456789L
x = 123456789
x = 0xB1ACC