Staging
v0.8.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
File Mode Size
.cvsignore -rw-r--r-- 87 bytes
BUILDno.txt -rw-r--r-- 2.1 KB
_socket.dsp -rwxr-xr-x 4.0 KB
_sre.dsp -rwxr-xr-x 7.6 KB
_symtable.dsp -rw-r--r-- 4.0 KB
_testcapi.dsp -rw-r--r-- 4.0 KB
_tkinter.dsp -rw-r--r-- 8.6 KB
bsddb.dsp -rw-r--r-- 8.4 KB
mmap.dsp -rw-r--r-- 3.9 KB
parser.dsp -rw-r--r-- 7.7 KB
pcbuild.dsw -rw-r--r-- 5.1 KB
pyexpat.dsp -rwxr-xr-x 7.9 KB
python.dsp -rw-r--r-- 6.7 KB
python20.wse -rw-r--r-- 40.7 KB
pythoncore.dsp -rw-r--r-- 38.4 KB
pythonw.dsp -rw-r--r-- 7.3 KB
readme.txt -rw-r--r-- 4.6 KB
rmpyc.py -rw-r--r-- 684 bytes
rt.bat -rwxr-xr-x 1.4 KB
select.dsp -rwxr-xr-x 4.1 KB
unicodedata.dsp -rwxr-xr-x 4.1 KB
w9xpopen.dsp -rw-r--r-- 3.4 KB
winreg.dsp -rw-r--r-- 4.0 KB
winsound.dsp -rw-r--r-- 3.8 KB
zlib.dsp -rw-r--r-- 4.1 KB

readme.txt

back to top