File: numeric_literals_py2.py

package info (click to toggle)
black 18.9b0-1-6
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,160 kB
  • sloc: python: 91,870; makefile: 32; sh: 2
file content (16 lines) | stat: -rw-r--r-- 176 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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