]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Fix a broken format in a PyErr_Format() call: %lx is not supported.
authorGuido van Rossum <guido@python.org>
Wed, 24 Oct 2007 21:13:09 +0000 (21:13 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 24 Oct 2007 21:13:09 +0000 (21:13 +0000)
commit5a2f7e60da093dcdea5d9e508f875285020019a6
treef87daca29a3eb9fe86f99671175372078b1f4275
parent52ddaefb6bab1a74ecffe8519c02735794ebfbe1
Fix a broken format in a PyErr_Format() call: %lx is not supported.
(It's still technically broken since the va_args code assumes %x is
an int while we're passing a long, but that's mostly theoretical,
and it's done all over the place.)
Objects/unicodeobject.c