summaryrefslogtreecommitdiff
path: root/Lib/compiler/pycodegen.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-04-12 18:38:48 +0000
committerTim Peters <tim.peters@gmail.com>2001-04-12 18:38:48 +0000
commitfff53250789c3879e5f63d4dde80d17e0b9c4dbb (patch)
tree2791ebaed57170dda86086e73280c1f9564959ce /Lib/compiler/pycodegen.py
parentbfb0cf822bedb25c38fa7f411af83d6654872dd4 (diff)
downloadcpython-git-fff53250789c3879e5f63d4dde80d17e0b9c4dbb.tar.gz
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.
Diffstat (limited to 'Lib/compiler/pycodegen.py')
0 files changed, 0 insertions, 0 deletions