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: hexadecimal, not decimal
Type: Stage:
Components: Documentation Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: benjamin.peterson, georg.brandl, maix
Priority: normal Keywords:

Created on 2008-09-11 21:24 by maix, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg73060 - (view) Author: (maix) Date: 2008-09-11 21:24
On http://docs.python.org/dev/library/string.html, at the format string
documentation, it says:

> The '#' option is only valid for integers, and only for binary, octal,
or *decimal* output. If present, it specifies that the output will be
prefixed by '0b', '0o', or '0x', respectively.

The decimal is wrong, hexadecimal is meant there.
msg73062 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-09-11 22:04
Thanks! Fixed in r66394.
msg73199 - (view) Author: (maix) Date: 2008-09-13 21:56
I'll just reuse that since it's such a little thing (complain if that's
not okay then I won't do again :) ):

On http://docs.python.org/dev/whatsnew/2.6.html , it says
> The bsddb module also has a new maintainer, Jes|uacute|s Cea
Should be a ú I think :)
msg73201 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-09-13 22:55
No problem! Fixed in r66458.
History
Date User Action Args
2022-04-11 14:56:39adminsetgithub: 48093
2008-09-13 22:55:20benjamin.petersonsetmessages: + msg73201
2008-09-13 21:56:51maixsetmessages: + msg73199
2008-09-11 22:04:15benjamin.petersonsetstatus: open -> closed
nosy: + benjamin.peterson
resolution: fixed
messages: + msg73062
2008-09-11 21:24:10maixcreate