diff options
author | Thomas Heller <theller@ctypes.org> | 2006-08-08 17:39:20 +0000 |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2006-08-08 17:39:20 +0000 |
commit | dc68ffd003d2fd6b02f4f843e97789024a542c17 (patch) | |
tree | df18771c4524edc390c7aa475502bc3f242ee54b | |
parent | ab1049c0462e760b2568ed050e62d094320481fa (diff) | |
download | cpython-git-dc68ffd003d2fd6b02f4f843e97789024a542c17.tar.gz |
Remove accidently committed, duplicated test.
-rw-r--r-- | Lib/test/test_types.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_types.py b/Lib/test/test_types.py index 83a01aa8e5..2d299c36f2 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" |