• Tim Peters's avatar
    Somebody started playing with const, so of course the outcome · c2e7da98
    Tim Peters yazdı
    was cascades of warnings about mismatching const decls.  Overall,
    I think const creates lots of headaches and solves almost
    nothing.  Added enough consts to shut up the warnings, but
    this did require casting away const in one spot too (another
    usual outcome of starting down this path):  the function
    mymemreplace can't return const char*, but sometimes wants to
    return its first argument as-is, which latter must be declared
    const char* in order to avoid const warnings at mymemreplace's
    call sites.  So, in the case the function wants to return the
    first arg, that arg's declared constness must be subverted.
    c2e7da98
Adı
Son kayıt (commit)
Son güncelleme
..
.cvsignore Loading commit data...
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...
unicodectype.c Loading commit data...
unicodeobject.c Loading commit data...
xxobject.c Loading commit data...