]> granicus.if.org Git - python/commit
Bug 415514 reported that e.g.
authorTim Peters <tim.peters@gmail.com>
Thu, 12 Apr 2001 18:38:48 +0000 (18:38 +0000)
committerTim Peters <tim.peters@gmail.com>
Thu, 12 Apr 2001 18:38:48 +0000 (18:38 +0000)
commitfff53250789c3879e5f63d4dde80d17e0b9c4dbb
tree2791ebaed57170dda86086e73280c1f9564959ce
parentbfb0cf822bedb25c38fa7f411af83d6654872dd4
Bug 415514 reported that e.g.
    "%#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.
Lib/test/test_format.py
Objects/stringobject.c
Objects/unicodeobject.c