• Victor Stinner's avatar
    dict.get() and dict.setdefault() now use AC · 7dc6a5f5
    Victor Stinner yazdı
    Issue #29311: dict.get() and dict.setdefault() methods now use Argument Clinic
    to parse arguments. Their calling convention changes from METH_VARARGS to
    METH_FASTCALL which avoids the creation of a temporary tuple.
    
    The signature of docstrings is also enhanced. For example,
        get(...)
    becomes:
        get(self, key, default=None, /)
    7dc6a5f5
Adı
Son kayıt (commit)
Son güncelleme
..
bytearrayobject.c.h Loading commit data...
bytesobject.c.h Loading commit data...
dictobject.c.h Loading commit data...
odictobject.c.h Loading commit data...
unicodeobject.c.h Loading commit data...