Change the last 4-space indent into a 1-tab indent.

This commit is contained in:
Guido van Rossum 1998-05-22 15:05:36 +00:00
parent 7ef2a1de9b
commit 26fd98201f
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ print 'oct'
if oct(100) != '0144': raise TestFailed, 'oct(100)'
if oct(100L) != '0144L': raise TestFailed, 'oct(100L)'
if oct(-100) not in ('037777777634', '01777777777777777777634'):
raise TestFailed, 'oct(-100)'
raise TestFailed, 'oct(-100)'
if oct(-100L) != '-0144L': raise TestFailed, 'oct(-100L)'
print 'open'