black/tests/data/numeric_literals_py2.py
2018-08-23 11:55:29 -07:00

15 lines
152 B
Python

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