]> granicus.if.org Git - python/commitdiff
Change the last 4-space indent into a 1-tab indent.
authorGuido van Rossum <guido@python.org>
Fri, 22 May 1998 15:05:36 +0000 (15:05 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 22 May 1998 15:05:36 +0000 (15:05 +0000)
Lib/test/test_b2.py

index 210206d661a6999d41e7c9a18c4dee6bd373ed4f..3b322a590d31532d8e92c99935925824df762c89 100644 (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'