1. 06 Eyl, 2016 1 kayıt (commit)
  2. 17 Tem, 2016 1 kayıt (commit)
  3. 18 Ock, 2016 1 kayıt (commit)
  4. 06 Ara, 2015 1 kayıt (commit)
  5. 29 Kas, 2015 1 kayıt (commit)
  6. 23 Kas, 2015 1 kayıt (commit)
  7. 10 Eki, 2015 1 kayıt (commit)
  8. 29 Eyl, 2015 1 kayıt (commit)
  9. 03 Tem, 2015 1 kayıt (commit)
  10. 12 May, 2015 1 kayıt (commit)
  11. 31 Mar, 2015 2 kayıt (commit)
  12. 16 Ara, 2014 1 kayıt (commit)
  13. 07 Ara, 2013 1 kayıt (commit)
  14. 01 Tem, 2013 2 kayıt (commit)
  15. 12 Şub, 2013 1 kayıt (commit)
  16. 04 Mar, 2012 1 kayıt (commit)
  17. 29 Agu, 2011 1 kayıt (commit)
  18. 24 Şub, 2011 2 kayıt (commit)
  19. 09 Eyl, 2010 1 kayıt (commit)
  20. 16 Nis, 2009 1 kayıt (commit)
  21. 09 Nis, 2009 1 kayıt (commit)
    • Collin Winter's avatar
      Issue 5665: add more pickling tests. · f8089c77
      Collin Winter yazdı
      - Add tests for the module-level load() and dump() functions.
      - Add tests for cPickle's internal data structures, stressing workloads
      with many gets/puts.
      - Add tests for the Pickler and Unpickler classes, in particular the
      memo attribute.
      - test_xpickle is extended to test backwards compatibility with Python
      2.4, 2.5 and 2.6 by round-tripping pickled objects through a worker
      process. This is guarded with a regrtest -u xpickle resource.
      f8089c77
  22. 12 Haz, 2008 2 kayıt (commit)
  23. 11 Haz, 2008 1 kayıt (commit)
  24. 20 May, 2008 1 kayıt (commit)
  25. 17 Mar, 2008 1 kayıt (commit)
    • Guido van Rossum's avatar
      - A new pickle protocol (protocol 3) is added with explicit support · f4169816
      Guido van Rossum yazdı
        for bytes.  This is the default protocol.  It intentionally cannot
        be unpickled by Python 2.x.
      
      - When a pickle	written	by Python 2.x contains an (8-bit) str
        instance, this is now decoded to a (Unicode) str instance.  The
        encoding used to do this defaults to ASCII, but can be overridden
        via two new keyword arguments to the Unpickler class.  Previously
        this would create bytes instances, which is usually wrong: str
        instances are often used to pickle attribute names etc., and text is
        more common than binary data anyway.
      f4169816
  26. 23 Şub, 2008 2 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 60990-61002 via svnmerge from · 05e8be17
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60990 | eric.smith | 2008-02-23 17:05:26 +0100 (Sat, 23 Feb 2008) | 1 line
      
        Removed duplicate Py_CHARMASK define.  It's already defined in Python.h.
      ........
        r60991 | andrew.kuchling | 2008-02-23 17:23:05 +0100 (Sat, 23 Feb 2008) | 4 lines
      
        #1330538: Improve comparison of xmlrpclib.DateTime and datetime instances.
        Remove automatic handling of datetime.date and datetime.time.
        This breaks backward compatibility, but python-dev discussion was strongly
        against this automatic conversion; see the bug for a link.
      ........
        r60994 | andrew.kuchling | 2008-02-23 17:39:43 +0100 (Sat, 23 Feb 2008) | 1 line
      
        #835521: Add index entries for various pickle-protocol methods and attributes
      ........
        r60995 | andrew.kuchling | 2008-02-23 18:10:46 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        #1433694: minidom's .normalize() failed to set .nextSibling for last element.
        Fix by Malte Helmert
      ........
        r61000 | christian.heimes | 2008-02-23 18:40:11 +0100 (Sat, 23 Feb 2008) | 1 line
      
        Patch #2167 from calvin: Remove unused imports
      ........
        r61001 | christian.heimes | 2008-02-23 18:42:31 +0100 (Sat, 23 Feb 2008) | 1 line
      
        Patch #1957: syslogmodule: Release GIL when calling syslog(3)
      ........
        r61002 | christian.heimes | 2008-02-23 18:52:07 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        Issue #2051 and patch from Alexander Belopolsky:
        Permission for pyc and pyo files are inherited from the py file.
      ........
      05e8be17
    • Christian Heimes's avatar
      c5f05e45
  27. 06 Kas, 2007 1 kayıt (commit)
    • Guido van Rossum's avatar
      Merging the py3k-pep3137 branch back into the py3k branch. · 98297ee7
      Guido van Rossum yazdı
      No detailed change log; just check out the change log for the py3k-pep3137
      branch.  The most obvious changes:
      
        - str8 renamed to bytes (PyString at the C level);
        - bytes renamed to buffer (PyBytes at the C level);
        - PyString and PyUnicode are no longer compatible.
      
      I.e. we now have an immutable bytes type and a mutable bytes type.
      
      The behavior of PyString was modified quite a bit, to make it more
      bytes-like.  Some changes are still on the to-do list.
      98297ee7
  28. 08 May, 2007 1 kayıt (commit)
  29. 01 May, 2003 1 kayıt (commit)
  30. 15 Şub, 2003 1 kayıt (commit)
    • Tim Peters's avatar
      cPickle.c, load_build(): Taught cPickle how to pick apart · 080c88b9
      Tim Peters yazdı
      the optional proto 2 slot state.
      
      pickle.py, load_build():  CAUTION:  Noted that cPickle's
      load_build and pickle's load_build really don't do the same
      things with the state, and didn't before this patch either.
      cPickle never tries to do .update(), and has no backoff if
      instance.__dict__ can't be retrieved.  There are no tests
      that can tell the difference, and part of what cPickle's
      load_build() did looked accidental to me, so I don't know
      what the true intent is here.
      
      pickletester.py, test_pickle.py:  Got rid of the hack for
      exempting cPickle from running some of the proto 2 tests.
      
      dictobject.c, PyDict_Next():  documented intended use.
      080c88b9
  31. 30 Ock, 2003 1 kayıt (commit)
  32. 29 Ock, 2003 1 kayıt (commit)
  33. 28 Ock, 2003 2 kayıt (commit)
  34. 13 Kas, 2002 1 kayıt (commit)