- 12 Mar, 2012 1 kayıt (commit)
-
-
Łukasz Langa yazdı
Thanks for James Sanders for the bug report and the patch.
-
- 04 Mar, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #14166: Pickler objects now have an optional `dispatch_table` attribute which allows to set custom per-pickler reduction functions. Patch by sbt.
-
- 13 Ara, 2011 1 kayıt (commit)
-
-
Alexandre Vassalotti yazdı
Initial patch by sbt.
-
- 12 Ara, 2011 1 kayıt (commit)
-
-
Florent Xicluna yazdı
-
- 04 Kas, 2011 1 kayıt (commit)
-
-
Florent Xicluna yazdı
-
- 28 Eki, 2011 1 kayıt (commit)
-
-
Florent Xicluna yazdı
-
- 04 Eki, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
metaclass is registered with copyreg. Patch by Nicolas M. Thiéry and Craig Citro.
-
- 29 Agu, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
the C pickle implementation.
-
- 01 Haz, 2011 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 09 Eyl, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
speedups up to 4x (depending on the benchmark). Mostly ported from Unladen Swallow; initial patch by Alexandre Vassalotti.
-
- 27 Tem, 2010 1 kayıt (commit)
-
-
Alexander Belopolsky yazdı
the first object in the pickle file.
-
- 17 Tem, 2010 2 kayıt (commit)
-
-
Alexander Belopolsky yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82937 | alexander.belopolsky | 2010-07-17 18:50:45 -0400 (Sat, 17 Jul 2010) | 3 lines Issue #5180: Fixed a bug that prevented loading 2.x pickles in 3.x python when they contain instances of old-style classes. ........
-
Alexander Belopolsky yazdı
python when they contain instances of old-style classes.
-
- 13 Nis, 2010 2 kayıt (commit)
-
-
Victor Stinner yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r80031 | victor.stinner | 2010-04-13 13:07:24 +0200 (mar., 13 avril 2010) | 4 lines Issue #8383: pickle and pickletools use surrogatepass error handler when encoding unicode as utf8 to support lone surrogates and stay compatible with Python 2.x and 3.0 ........
-
Victor Stinner yazdı
encoding unicode as utf8 to support lone surrogates and stay compatible with Python 2.x and 3.0
-
- 12 Ock, 2010 1 kayıt (commit)
-
-
Alexandre Vassalotti yazdı
-
- 04 Haz, 2009 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
or dumping pickles with a 2.x-compatible protocol, in order to make data sharing and migration easier. This behaviour can be disabled using the new `fix_imports` optional argument.
-
- 25 May, 2009 1 kayıt (commit)
-
-
Alexandre Vassalotti yazdı
This matches the behaviour implmented in _pickle.
-
- 02 May, 2009 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72223 | antoine.pitrou | 2009-05-02 23:13:23 +0200 (sam., 02 mai 2009) | 5 lines Isue #5084: unpickling now interns the attribute names of pickled objects, saving memory and avoiding growth in size of subsequent pickles. Proposal and original patch by Jake McGuire. ........
-
- 20 Ock, 2009 1 kayıt (commit)
-
-
Mark Dickinson yazdı
'L' opcode always appends an 'L' on output, just as 2.x does. When unpickling, remove the trailing 'L' (if present) before passing the result to PyLong_FromString.
-
- 10 Ock, 2009 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 27 Ara, 2008 1 kayıt (commit)
-
-
Alexandre Vassalotti yazdı
Add an initialization check to mimic the interface of _pickle.
-
- 04 Kas, 2008 2 kayıt (commit)
-
-
Hirokazu Yamamoto yazdı
-
Hirokazu Yamamoto yazdı
........ r67002 | hirokazu.yamamoto | 2008-10-23 09:37:33 +0900 | 1 line Issue #4183: Some tests didn't run with pickle.HIGHEST_PROTOCOL. ........
-
- 25 Eki, 2008 1 kayıt (commit)
-
-
Alexandre Vassalotti yazdı
Pickler does not read anything from the given file.
-
- 12 Haz, 2008 2 kayıt (commit)
-
-
Alexandre Vassalotti yazdı
Removed Windows support temporarily. 64bit bug with integer unpickling is now fixed.
-
Benjamin Peterson yazdı
-
- 11 Haz, 2008 2 kayıt (commit)
-
-
Alexandre Vassalotti yazdı
-
Alexandre Vassalotti yazdı
-
- 14 May, 2008 1 kayıt (commit)
-
-
Alexandre Vassalotti yazdı
an iterable object, instead of an iterator.
-
- 11 May, 2008 1 kayıt (commit)
-
-
Alexandre Vassalotti yazdı
Updated documentation. Merged revisions 63042 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r63042 | alexandre.vassalotti | 2008-05-11 04:25:28 -0400 (Sun, 11 May 2008) | 5 lines Added module stub for copy_reg renaming in 3.0. Renamed copy_reg to copyreg in the standard library, to avoid spurious warnings and ease later merging to py3k branch. Public documentation remains intact. ........
-
- 03 May, 2008 1 kayıt (commit)
-
-
Alexandre Vassalotti yazdı
memoryview objects have a different API (such as for indexing) than bytes and bytesarray objects, so memoryview objects shouldn't be treated blindly as "bytes" objects.
-
- 17 Mar, 2008 1 kayıt (commit)
-
-
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.
-
- 21 Kas, 2007 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 06 Kas, 2007 1 kayıt (commit)
-
-
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.
-
- 16 Eki, 2007 1 kayıt (commit)
-
-
Guido van Rossum yazdı
I like this because it makes the code shorter! :-)
-
- 10 Eki, 2007 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 27 Agu, 2007 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 20 Tem, 2007 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-