summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorRobert Schuppenies <okkotonushi@googlemail.com>2008-06-01 17:11:09 (GMT)
committerRobert Schuppenies <okkotonushi@googlemail.com>2008-06-01 17:11:09 (GMT)
commit9359afff56f6bf87b1850c0ab29a001e0bcbe4a2 (patch)
treed61f1a46ff8a73264d337ca4eef2b93314fc1601 /Lib
parent12f8107f91e69db04a99d3f069382de7bfc9d706 (diff)
downloadcpython-9359afff56f6bf87b1850c0ab29a001e0bcbe4a2.zip
cpython-9359afff56f6bf87b1850c0ab29a001e0bcbe4a2.tar.gz
cpython-9359afff56f6bf87b1850c0ab29a001e0bcbe4a2.tar.bz2
Fix test_sys.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_sys.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py
index 28614a6..0e17f02 100644
--- a/Lib/test/test_sys.py
+++ b/Lib/test/test_sys.py
@@ -452,8 +452,6 @@ class SizeofTest(unittest.TestCase):
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