commit | 3c9e6e9375954e9911ceddb65a98c3e58986e9a7 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Thu Jun 24 22:31:12 2010 +0000 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Thu Jun 24 22:31:12 2010 +0000 |
tree | da76f158bbbd6c812131d596c201714161ad9627 | |
parent | 4aae1ebab2cab2a4df1ed89b9454f3c88642530e [diff] |
PyArg_Parse*() functions: factorize code for s/z and u/Z formats
diff --git a/Lib/test/test_pyexpat.py b/Lib/test/test_pyexpat.py index 00d92f9..3898348 100644 --- a/Lib/test/test_pyexpat.py +++ b/Lib/test/test_pyexpat.py
@@ -184,7 +184,7 @@ self.fail() except TypeError as e: self.assertEquals(str(e), - 'ParserCreate() argument 2 must be string or None, not int') + 'ParserCreate() argument 2 must be str or None, not int') try: expat.ParserCreate(namespace_separator='too long')