From: Raymond Hettinger Date: Tue, 15 Mar 2011 22:07:38 +0000 (-0700) Subject: whitespace fix X-Git-Tag: v3.3.0a1~2898^2^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5bd75b87263bc6502753381138e15531ce4574a6;p=thirdparty%2FPython%2Fcpython.git whitespace fix --- diff --git a/Lib/test/test_peepholer.py b/Lib/test/test_peepholer.py index bab4c1e5d9df..f73565eb46fb 100644 --- a/Lib/test/test_peepholer.py +++ b/Lib/test/test_peepholer.py @@ -297,15 +297,15 @@ class TestTranforms(unittest.TestCase): class TestBuglets(unittest.TestCase): - def test_bug_11510(self): - # folded constant set optimization was commingled with the tuple - # unpacking optimization which would fail if the set had duplicate - # elements so that the set length was unexpected - def f(): - x, y = {1, 1} - return x, y - with self.assertRaises(ValueError): - f() + def test_bug_11510(self): + # folded constant set optimization was commingled with the tuple + # unpacking optimization which would fail if the set had duplicate + # elements so that the set length was unexpected + def f(): + x, y = {1, 1} + return x, y + with self.assertRaises(ValueError): + f() def test_main(verbose=None):