diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-04-13 20:46:33 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-04-13 20:46:33 (GMT) |
commit | c1ab0bd788eeaab6816d5ab2b4a691513c4c9228 (patch) | |
tree | 19ffc6652eb13122d7d2ba29939c670222e4fee0 /Lib/test/test_marshal.py | |
parent | e9bbe8b87ba2874efba0474af5cc7d5941dbf742 (diff) | |
download | cpython-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.py | 2 |
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): |