[Python-checkins] r63861 - python/trunk/Lib/test/test_sys.py

robert.schuppenies python-checkins at python.org
Sun Jun 1 19:11:09 CEST 2008


Author: robert.schuppenies
Date: Sun Jun  1 19:11:09 2008
New Revision: 63861

Log:
Fix test_sys.


Modified:
   python/trunk/Lib/test/test_sys.py

Modified: python/trunk/Lib/test/test_sys.py
==============================================================================
--- python/trunk/Lib/test/test_sys.py	(original)
+++ python/trunk/Lib/test/test_sys.py	Sun Jun  1 19:11:09 2008
@@ -452,8 +452,6 @@
         self.check_sizeof(True, h + l)
         # buffer
         self.check_sizeof(buffer(''), h + 2*p + 2*l + self.align(i) +l)
-        # bytearray
-        self.check_sizeof(bytes(), h + self.align(i) + l + p)
         # cell
         def get_cell():
             x = 42


More information about the Python-checkins mailing list