]> granicus.if.org Git - python/commitdiff
Merged revisions 71553 via svnmerge from
authorR. David Murray <rdmurray@bitdance.com>
Mon, 13 Apr 2009 01:22:04 +0000 (01:22 +0000)
committerR. David Murray <rdmurray@bitdance.com>
Mon, 13 Apr 2009 01:22:04 +0000 (01:22 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r71553 | r.david.murray | 2009-04-12 21:06:46 -0400 (Sun, 12 Apr 2009) | 3 lines

  Adjust test_asyncore to account for intentional asyncore behavior change
  introduced by r70934 that was causing a test failure when run under -O.
........

Lib/test/test_asyncore.py

index 6837602edd1ce1c77176b24bc619c1ab47ca8ed9..ba89f125dbdcd41c64ebe5cba4fb9f2593f20e4e 100644 (file)
@@ -273,10 +273,7 @@ class DispatcherTests(unittest.TestCase):
             sys.stdout = stdout
 
         lines = fp.getvalue().splitlines()
-        if __debug__:
-            expected = ['EGGS: %s' % l1, 'info: %s' % l2, 'SPAM: %s' % l3]
-        else:
-            expected = ['EGGS: %s' % l1, 'SPAM: %s' % l3]
+        expected = ['EGGS: %s' % l1, 'info: %s' % l2, 'SPAM: %s' % l3]
 
         self.assertEquals(lines, expected)