summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_b2.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-05-22 15:05:36 (GMT)
committerGuido van Rossum <guido@python.org>1998-05-22 15:05:36 (GMT)
commit26fd98201ffeea6e234b7ac0d032d296362595fd (patch)
tree7e63ad19b7736d31671260f1fe5195ee0fe4c4ec /Lib/test/test_b2.py
parent7ef2a1de9b81cc3a27d10de22e087008c301e602 (diff)
downloadcpython-26fd98201ffeea6e234b7ac0d032d296362595fd.zip
cpython-26fd98201ffeea6e234b7ac0d032d296362595fd.tar.gz
cpython-26fd98201ffeea6e234b7ac0d032d296362595fd.tar.bz2
Change the last 4-space indent into a 1-tab indent.
Diffstat (limited to 'Lib/test/test_b2.py')
-rw-r--r--Lib/test/test_b2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_b2.py b/Lib/test/test_b2.py
index 210206d..3b322a5 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'