• Guido van Rossum's avatar
    Fix bug discovered by John W. Shipman -- when the width of a format · 98c9eba9
    Guido van Rossum yazdı
    specifier came from an int expression instead of a constant in the
    format, a negative width was truncated to zero instead of taken to
    mean the same as that negative constant plugged into the format.  E.g.
    "(%*s)" % (-5, "foo") yielded "(foo)" while "(%-5s)" yields "(foo  )".
    Now both yield the latter -- like sprintf() in C.
    98c9eba9
Adı
Son kayıt (commit)
Son güncelleme
..
Makefile.in Loading commit data...
abstract.c Loading commit data...
bufferobject.c Loading commit data...
classobject.c Loading commit data...
cobject.c Loading commit data...
complexobject.c Loading commit data...
dictobject.c Loading commit data...
fileobject.c Loading commit data...
floatobject.c Loading commit data...
frameobject.c Loading commit data...
funcobject.c Loading commit data...
intobject.c Loading commit data...
listobject.c Loading commit data...
longobject.c Loading commit data...
methodobject.c Loading commit data...
moduleobject.c Loading commit data...
object.c Loading commit data...
rangeobject.c Loading commit data...
sliceobject.c Loading commit data...
stringobject.c Loading commit data...
tupleobject.c Loading commit data...
typeobject.c Loading commit data...
xxobject.c Loading commit data...