• Guido van Rossum's avatar
    - Provisional support for pickling new-style objects. (*) · 3926a63d
    Guido van Rossum yazdı
    - Made cls.__module__ writable.
    
    - Ensure that obj.__dict__ is returned as {}, not None, even upon first
      reference; it simply springs into life when you ask for it.
    
    (*) The pickling support is provisional for the following reasons:
    
    - It doesn't support classes with __slots__.
    
    - It relies on additional support in copy_reg.py: the C method
      __reduce__, defined in the object class, really calls calling
      copy_reg._reduce(obj).  Eventually the Python code in copy_reg.py
      needs to be migrated to C, but I'd like to experiment with the
      Python implementation first.  The _reduce() code also relies on an
      additional helper function, _reconstructor(), defined in
      copy_reg.py; this should also be reimplemented in C.
    3926a63d
Adı
Son kayıt (commit)
Son güncelleme
..
.cvsignore Loading commit data...
abstract.c Loading commit data...
bufferobject.c Loading commit data...
cellobject.c Loading commit data...
classobject.c Loading commit data...
cobject.c Loading commit data...
complexobject.c Loading commit data...
descrobject.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...
iterobject.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...
obmalloc.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...
unicodetype_db.h Loading commit data...
xxobject.c Loading commit data...