[Python-checkins] cpython: Fix misindent. This would test half less possibilities.

antoine.pitrou python-checkins at python.org
Sat Apr 13 22:46:45 CEST 2013


http://hg.python.org/cpython/rev/a80b8ff63f85
changeset:   83314:a80b8ff63f85
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Sat Apr 13 22:46:33 2013 +0200
summary:
  Fix misindent.  This would test half less possibilities.

files:
  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
--- a/Lib/test/test_marshal.py
+++ b/Lib/test/test_marshal.py
@@ -28,7 +28,7 @@
         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):

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list