Fix for bug #485951: repr diff between string and unicode.
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 1420455..f793020 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -1833,7 +1833,7 @@
         }
 
         /* Map non-printable US ASCII to '\xhh' */
-        else if (ch < ' ' || ch >= 128) {
+        else if (ch < ' ' || ch >= 0x7F) {
             *p++ = '\\';
             *p++ = 'x';
             *p++ = hexdigit[(ch >> 4) & 0x000F];