From d92e078c8d17e66c09f8e279f3efcab6932303a2 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sun, 14 Apr 2013 19:17:42 +0200 Subject: [PATCH] Minor change: fix character in do_strip() for the ASCII case --- Objects/unicodeobject.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index dfc3cf21c96..17a19db34b5 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -11705,7 +11705,7 @@ do_strip(PyObject *self, int striptype) i = 0; if (striptype != RIGHTSTRIP) { while (i < len) { - Py_UCS4 ch = data[i]; + Py_UCS1 ch = data[i]; if (!_Py_ascii_whitespace[ch]) break; i++; @@ -11716,7 +11716,7 @@ do_strip(PyObject *self, int striptype) if (striptype != LEFTSTRIP) { j--; while (j >= i) { - Py_UCS4 ch = data[j]; + Py_UCS1 ch = data[j]; if (!_Py_ascii_whitespace[ch]) break; j--;