Issue 3843: hexadecimal, not decimal (original) (raw)
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.