From: Guido van Rossum Date: Fri, 22 May 1998 15:05:36 +0000 (+0000) Subject: Change the last 4-space indent into a 1-tab indent. X-Git-Tag: v1.5.2a1~562 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=26fd98201ffeea6e234b7ac0d032d296362595fd;p=thirdparty%2FPython%2Fcpython.git Change the last 4-space indent into a 1-tab indent. --- diff --git a/Lib/test/test_b2.py b/Lib/test/test_b2.py index 210206d661a6..3b322a590d31 100644 --- a/Lib/test/test_b2.py +++ b/Lib/test/test_b2.py @@ -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'