Staging
v0.5.1
https://github.com/python/cpython
Revision fff53250789c3879e5f63d4dde80d17e0b9c4dbb authored by Tim Peters on 12 April 2001, 18:38:48 UTC, committed by Tim Peters on 12 April 2001, 18:38:48 UTC
    "%#x" % 0
blew up, at heart because C sprintf supplies a base marker if and only if
the value is not 0.  I then fixed that, by tolerating C's inconsistency
when it does %#x, and taking away that *Python* produced 0x0 when
formatting 0L (the "long" flavor of 0) under %#x itself.  But after talking
with Guido, we agreed it would be better to supply 0x for the short int
case too, despite that it's inconsistent with C, because C is inconsistent
with itself and with Python's hex(0) (plus, while "%#x" % 0 didn't work
before, "%#x" % 0L *did*, and returned "0x0").  Similarly for %#X conversion.
1 parent bfb0cf8
History
Tip revision: fff53250789c3879e5f63d4dde80d17e0b9c4dbb authored by Tim Peters on 12 April 2001, 18:38:48 UTC
Bug 415514 reported that e.g.
Tip revision: fff5325

ReadMe

back to top