From 43c57785d3319249c03c3fa46c9df42a8ccd3e52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Sun, 10 May 2009 08:15:24 +0000 Subject: Rename utf8b error handler to surrogateescape. --- Modules/python.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Modules/python.c') diff --git a/Modules/python.c b/Modules/python.c index 4c0a55bb1f..13c6d5b82a 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. */ -- cgit v1.2.1