summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-07-22 20:13:35 (GMT)
committerGuido van Rossum <guido@python.org>2007-07-22 20:13:35 (GMT)
commitca73d496ecd5d7addaf3190459e327040958c7a3 (patch)
tree6069cac1eb382720faf1db4f1fefcd8e5a129e43 /Lib
parentf8761c781b09789950e069206c4b9d42f2bc7a9c (diff)
downloadcpython-ca73d496ecd5d7addaf3190459e327040958c7a3.zip
cpython-ca73d496ecd5d7addaf3190459e327040958c7a3.tar.gz
cpython-ca73d496ecd5d7addaf3190459e327040958c7a3.tar.bz2
Remove this test; it checked for a single old bug and I don't think that
its failure means much, now that the handling of unicode and bytes has changed so much.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_getargs.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/Lib/test/test_getargs.py b/Lib/test/test_getargs.py
deleted file mode 100644
index 21bfeeb..0000000
--- a/Lib/test/test_getargs.py
+++ /dev/null
@@ -1,24 +0,0 @@
-"""Test the internal getargs.c implementation
-
- PyArg_ParseTuple() is defined here.
-
-The test here is not intended to test all of the module, just the
-single case that failed between 2.1 and 2.2a2.
-"""
-
-# marshal.loads() uses PyArg_ParseTuple(args, "s#:loads")
-# The s code will cause a Unicode conversion to occur. This test
-# verify that the error is propagated properly from the C code back to
-# Python.
-
-# XXX If the encoding succeeds using the current default encoding,
-# this test will fail because it does not test the right part of the
-# PyArg_ParseTuple() implementation.
-from test.test_support import have_unicode
-import marshal
-
-if have_unicode:
- try:
- marshal.loads(str(r"\222", 'unicode-escape'))
- except UnicodeError:
- pass