mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
145 B
Python
14 lines
145 B
Python
|
|
#Bad Octal literal
|
|
017
|
|
#Good Octal literal
|
|
0o17
|
|
#Special case file permissions
|
|
permission = 0777
|
|
|
|
#Other literals beginning with 0
|
|
0
|
|
0L
|
|
0b1
|
|
0x1
|