mirror of https://github.com/python/cpython
updated the oct(-100) test since oct() of a signed literal has changed.
This commit is contained in:
parent
64278cf5f7
commit
906a5e9c68
|
@ -5,7 +5,7 @@ from test_support import *
|
|||
print 'oct'
|
||||
if oct(100) != '0144': raise TestFailed, 'oct(100)'
|
||||
if oct(100L) != '0144L': raise TestFailed, 'oct(100L)'
|
||||
if oct(-100) != '-0144': raise TestFailed, 'oct(-100)'
|
||||
if oct(-100) != '037777777634': raise TestFailed, 'oct(-100)'
|
||||
if oct(-100L) != '-0144L': raise TestFailed, 'oct(-100L)'
|
||||
|
||||
print 'open'
|
||||
|
|
Loading…
Reference in New Issue