summaryrefslogtreecommitdiffstats
path: root/Modules/python.c
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2009-05-10 08:15:24 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2009-05-10 08:15:24 (GMT)
commit43c57785d3319249c03c3fa46c9df42a8ccd3e52 (patch)
tree199d57826897ac525b4057253a82aaaefcb6ef82 /Modules/python.c
parente0a2b72e61a474dceb948be57cb2983f70ab07fb (diff)
downloadcpython-43c57785d3319249c03c3fa46c9df42a8ccd3e52.zip
cpython-43c57785d3319249c03c3fa46c9df42a8ccd3e52.tar.gz
cpython-43c57785d3319249c03c3fa46c9df42a8ccd3e52.tar.bz2
Rename utf8b error handler to surrogateescape.
Diffstat (limited to 'Modules/python.c')
-rw-r--r--Modules/python.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/python.c b/Modules/python.c
index 4c0a55b..13c6d5b 100644
--- a/Modules/python.c
+++ b/Modules/python.c
@@ -42,7 +42,7 @@ char2wchar(char* arg)
return res;
PyMem_Free(res);
}
- /* Conversion failed. Fall back to escaping with utf8b. */
+ /* Conversion failed. Fall back to escaping with surrogateescape. */
#ifdef HAVE_MBRTOWC
/* Try conversion with mbrtwoc (C99), and escape non-decodable bytes. */