[Python-checkins] r51140 - python/trunk/Lib/test/test_types.py

thomas.heller python-checkins at python.org
Tue Aug 8 19:39:21 CEST 2006


Author: thomas.heller
Date: Tue Aug  8 19:39:20 2006
New Revision: 51140

Modified:
   python/trunk/Lib/test/test_types.py
Log:
Remove accidently committed, duplicated test.

Modified: python/trunk/Lib/test/test_types.py
==============================================================================
--- python/trunk/Lib/test/test_types.py	(original)
+++ python/trunk/Lib/test/test_types.py	Tue Aug  8 19:39:20 2006
@@ -235,8 +235,6 @@
 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"


More information about the Python-checkins mailing list