summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_marshal.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-04-13 20:46:33 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-04-13 20:46:33 (GMT)
commitc1ab0bd788eeaab6816d5ab2b4a691513c4c9228 (patch)
tree19ffc6652eb13122d7d2ba29939c670222e4fee0 /Lib/test/test_marshal.py
parente9bbe8b87ba2874efba0474af5cc7d5941dbf742 (diff)
downloadcpython-c1ab0bd788eeaab6816d5ab2b4a691513c4c9228.zip
cpython-c1ab0bd788eeaab6816d5ab2b4a691513c4c9228.tar.gz
cpython-c1ab0bd788eeaab6816d5ab2b4a691513c4c9228.tar.bz2
Fix misindent. This would test half less possibilities.
Diffstat (limited to 'Lib/test/test_marshal.py')
-rw-r--r--Lib/test/test_marshal.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_marshal.py b/Lib/test/test_marshal.py
index 7c52ee3..292746b 100644
--- a/Lib/test/test_marshal.py
+++ b/Lib/test/test_marshal.py
@@ -28,7 +28,7 @@ class IntTestCase(unittest.TestCase, HelperMixin):
while n:
for expected in (-n, n):
self.helper(expected)
- n = n >> 1
+ n = n >> 1
def test_bool(self):
for b in (True, False):