Staging
v0.5.1
https://github.com/python/cpython
Revision a1eb2274943e86987fdd5a4c08ebd8c301522e3b authored by Guido van Rossum on 11 October 2002, 00:09:51 UTC, committed by Guido van Rossum on 11 October 2002, 00:09:51 UTC
The string formatting code has a test to switch to Unicode when %s
sees a Unicode argument.  Unfortunately this test was also executed
for %r, because %s and %r share almost all of their code.  This meant
that, if u is a unicode object while repr(u) is an 8-bit string
containing ASCII characters, '%r' % u is a *unicode* string containing
only ASCII characters!

Fixed by executing the test only for %s.
1 parent 3d3a0fa
History
Tip revision: a1eb2274943e86987fdd5a4c08ebd8c301522e3b authored by Guido van Rossum on 11 October 2002, 00:09:51 UTC
Backport the relevant part of 2.192:
Tip revision: a1eb227
File Mode Size
.cvsignore -rw-r--r-- 17 bytes
abstract.c -rw-r--r-- 43.5 KB
bufferobject.c -rw-r--r-- 11.2 KB
cellobject.c -rw-r--r-- 2.3 KB
classobject.c -rw-r--r-- 55.7 KB
cobject.c -rw-r--r-- 3.6 KB
complexobject.c -rw-r--r-- 22.0 KB
descrobject.c -rw-r--r-- 26.0 KB
dictobject.c -rw-r--r-- 49.8 KB
fileobject.c -rw-r--r-- 41.9 KB
floatobject.c -rw-r--r-- 21.8 KB
frameobject.c -rw-r--r-- 12.3 KB
funcobject.c -rw-r--r-- 16.0 KB
intobject.c -rw-r--r-- 25.1 KB
iterobject.c -rw-r--r-- 5.5 KB
listobject.c -rw-r--r-- 44.7 KB
longobject.c -rw-r--r-- 52.5 KB
methodobject.c -rw-r--r-- 7.0 KB
moduleobject.c -rw-r--r-- 5.6 KB
object.c -rw-r--r-- 47.6 KB
obmalloc.c -rw-r--r-- 22.2 KB
rangeobject.c -rw-r--r-- 7.1 KB
sliceobject.c -rw-r--r-- 4.7 KB
stringobject.c -rw-r--r-- 90.1 KB
structseq.c -rw-r--r-- 8.6 KB
tupleobject.c -rw-r--r-- 14.6 KB
typeobject.c -rw-r--r-- 107.9 KB
unicodectype.c -rw-r--r-- 8.6 KB
unicodeobject.c -rw-r--r-- 145.1 KB
unicodetype_db.h -rw-r--r-- 37.0 KB
weakrefobject.c -rw-r--r-- 21.0 KB
xxobject.c -rw-r--r-- 2.4 KB

back to top