This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: 664044: 2.2.6.2 String formatting operations
Type: Stage:
Components: Documentation Versions: Python 2.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: rhettinger Nosy List: blunck2, rhettinger
Priority: normal Keywords: patch

Created on 2003-01-08 05:15 by blunck2, last changed 2022-04-10 16:06 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
libstdtypes.tex.diff blunck2, 2003-01-08 05:15 contextual diff for libstdtypes.tex
Messages (2)
msg42366 - (view) Author: Christopher Blunck (blunck2) Date: 2003-01-08 05:15
Documentation states that format % object returns a
Unicode string if either format or object are unicode.
 However, in the conversion table, the documentation
for the conversion "s" states that a String will be
returned.  It does not state that a unicode String will
be returned if the formatter is u"s" or if the object
being converted is unicode.  

I added a note to clarify the conversion table.  It
simply states that in the event of a unicode formatter
or a unicode string being converted, a unicode string
(not a regular string) will be returned.
msg42367 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2003-01-13 04:36
Logged In: YES 
user_id=80475

Fixed.
See Doc/lib/libstdtypes.tex 1.117 and 1.80.6.18.

History
Date User Action Args
2022-04-10 16:06:07adminsetgithub: 37739
2003-01-08 05:15:09blunck2create