summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2006-08-08 17:39:20 (GMT)
committerThomas Heller <theller@ctypes.org>2006-08-08 17:39:20 (GMT)
commitdc68ffd003d2fd6b02f4f843e97789024a542c17 (patch)
treedf18771c4524edc390c7aa475502bc3f242ee54b /Lib
parentab1049c0462e760b2568ed050e62d094320481fa (diff)
downloadcpython-dc68ffd003d2fd6b02f4f843e97789024a542c17.zip
cpython-dc68ffd003d2fd6b02f4f843e97789024a542c17.tar.gz
cpython-dc68ffd003d2fd6b02f4f843e97789024a542c17.tar.bz2
Remove accidently committed, duplicated test.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_types.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_types.py b/Lib/test/test_types.py
index 83a01aa..2d299c3 100644
--- a/Lib/test/test_types.py
+++ b/Lib/test/test_types.py
@@ -235,8 +235,6 @@ except ValueError: pass
else: raise TestFailed, "buffer('asdf', -1) should raise ValueError"
cmp(buffer("abc"), buffer("def")) # used to raise a warning: tp_compare didn't return -1, 0, or 1
-cmp(buffer('abc'), buffer('def'))
-
try: buffer(None)
except TypeError: pass
else: raise TestFailed, "buffer(None) should raise TypeError"