| Commit message (Expand) | Author | Age | Files | Lines |
* | Fixes #13842: cannot pickle Ellipsis or NotImplemented. | Ćukasz Langa | 2012-03-12 | 1 | -0/+12 |
|
|
* | Issue #14166: Pickler objects now have an optional `dispatch_table` attribute... | Antoine Pitrou | 2012-03-04 | 1 | -0/+99 |
|
|
* | Merge 3.2 | Alexandre Vassalotti | 2011-12-13 | 1 | -3/+9 |
|\ |
|
| * | Issue #13505: Make pickling of bytes object compatible with Python 2. | Alexandre Vassalotti | 2011-12-13 | 1 | -3/+9 |
|
|
* | | Also fix pickletester | Antoine Pitrou | 2011-10-04 | 1 | -3/+3 |
|
|
* | | Start fixing test_bigmem: | Antoine Pitrou | 2011-10-04 | 1 | -6/+6 |
|\ \
| |/ |
|
| * | Start fixing test_bigmem: | Antoine Pitrou | 2011-10-04 | 1 | -6/+6 |
|
|
* | | Issue #7689: Allow pickling of dynamically created classes when their | Antoine Pitrou | 2011-10-04 | 1 | -0/+21 |
|\ \
| |/ |
|
| * | Issue #7689: Allow pickling of dynamically created classes when their | Antoine Pitrou | 2011-10-04 | 1 | -0/+21 |
|
|
* | | Try to fix one of the bigmem tests in test_pickle | Antoine Pitrou | 2011-08-30 | 1 | -0/+5 |
|\ \
| |/ |
|
| * | Try to fix one of the bigmem tests in test_pickle | Antoine Pitrou | 2011-08-30 | 1 | -0/+5 |
|
|
* | | Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments in | Antoine Pitrou | 2011-08-29 | 1 | -0/+12 |
|\ \
| |/ |
|
| * | Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments in | Antoine Pitrou | 2011-08-29 | 1 | -0/+12 |
|
|
* | | Issue #11564: Avoid crashes when trying to pickle huge objects or containers | Antoine Pitrou | 2011-08-29 | 1 | -1/+100 |
|\ \
| |/ |
|
| * | Issue #11564: Avoid crashes when trying to pickle huge objects or containers | Antoine Pitrou | 2011-08-29 | 1 | -1/+101 |
|
|
* | | Monotonic, not monotonous | Antoine Pitrou | 2011-08-13 | 1 | -1/+1 |
|
|
* | | Issue #12744: Fix inefficient representation of integers | Antoine Pitrou | 2011-08-13 | 1 | -0/+10 |
|
|
* | | Issue #12687: Fix a possible buffering bug when unpickling text mode (protoco... | Antoine Pitrou | 2011-08-11 | 1 | -0/+13 |
|\ \
| |/ |
|
| * | Issue #12687: Fix a possible buffering bug when unpickling text mode (protoco... | Antoine Pitrou | 2011-08-11 | 1 | -0/+13 |
|
|
| * | Merged revisions 88546 via svnmerge from | Alexander Belopolsky | 2011-02-24 | 1 | -0/+4 |
|
|
* | | Issue #9935: Speed up pickling of instances of user-defined classes. | Antoine Pitrou | 2011-03-11 | 1 | -1/+20 |
|
|
* | | Issue #11286: Fixed unpickling of empty 2.x strings. | Alexander Belopolsky | 2011-02-24 | 1 | -0/+4 |
|
|
* | | Issue #10990: Prevent tests from clobbering a set trace function. | Brett Cannon | 2011-02-21 | 1 | -1/+2 |
|/ |
|
* | #9424: Replace deprecated assert* methods in the Python test suite. | Ezio Melotti | 2010-11-20 | 1 | -1/+1 |
|
|
* | Revert r85797 (and r85798): it broke the Windows buildbots because of | Antoine Pitrou | 2010-10-22 | 1 | -20/+1 |
|
|
* | Issue #9935: Speed up pickling of instances of user-defined classes. | Antoine Pitrou | 2010-10-22 | 1 | -1/+20 |
|
|
* | Issue #3873: Speed up unpickling from file objects which have a peek() | Antoine Pitrou | 2010-10-12 | 1 | -1/+42 |
|
|
* | Issue #9410: Various optimizations to the pickle module, leading to | Antoine Pitrou | 2010-09-09 | 1 | -0/+9 |
|
|
* | Issue #5180: Fixed a bug that prevented loading 2.x pickles in 3.x | Alexander Belopolsky | 2010-07-17 | 1 | -0/+69 |
|
|
* | Issue #8383: pickle and pickletools use surrogatepass error handler when | Victor Stinner | 2010-04-13 | 1 | -1/+3 |
|
|
* | Merged revisions 77727 via svnmerge from | Ezio Melotti | 2010-01-24 | 1 | -1/+1 |
|
|
* | use assert[Not]In where appropriate | Ezio Melotti | 2010-01-23 | 1 | -4/+4 |
|
|
* | Merged revisions 77352-77354 via svnmerge from | Antoine Pitrou | 2010-01-07 | 1 | -0/+3 |
|
|
* | Issue #7435: Remove duplicate int/long tests, and other | Mark Dickinson | 2009-12-05 | 1 | -4/+1 |
|
|
* | convert old fail* assertions to assert* | Benjamin Peterson | 2009-06-30 | 1 | -13/+13 |
|
|
* | Issue #6137: The pickle module now translates module names when loading | Antoine Pitrou | 2009-06-04 | 1 | -0/+42 |
|
|
* | Merged revisions 72930 via svnmerge from | Collin Winter | 2009-05-26 | 1 | -0/+10 |
|
|
* | Merged revisions 72223 via svnmerge from | Antoine Pitrou | 2009-05-02 | 1 | -0/+14 |
|
|
* | Port r71408 to py3k: issue 5665, add more pickling tests. | Collin Winter | 2009-04-16 | 1 | -8/+145 |
|
|
* | Merged revisions 68903,68906 via svnmerge from | Mark Dickinson | 2009-01-24 | 1 | -0/+10 |
|
|
* | Issue #4842, patch 1/2: fix pickle in Python 3.x so that pickling with the | Mark Dickinson | 2009-01-20 | 1 | -81/+81 |
|
|
* | fix syntax | Benjamin Peterson | 2008-12-27 | 1 | -2/+2 |
|
|
* | Merged revisions 67889-67892,67895,67898,67904-67907,67912,67918,67920-67921,... | Benjamin Peterson | 2008-12-27 | 1 | -2/+2 |
|
|
* | Update copy of PyUnicode_EncodeRawUnicodeEscape in _pickle. | Alexandre Vassalotti | 2008-12-27 | 1 | -1/+9 |
|
|
* | #4298: pickle.load() can segfault on invalid or truncated input. | Amaury Forgeot d'Arc | 2008-11-11 | 1 | -0/+5 |
|
|
* | Correct the pickle test, broken since r67059: | Amaury Forgeot d'Arc | 2008-10-31 | 1 | -2/+9 |
|
|
* | Merged revisions 67049 via svnmerge from | Amaury Forgeot d'Arc | 2008-10-30 | 1 | -0/+16 |
|
|
* | #3664: The pickle module could segfault if a Pickler instance is not correctl... | Amaury Forgeot d'Arc | 2008-10-17 | 1 | -0/+14 |
|
|
* | Issue 3514: Fixed segfault dues to infinite loop in __getattr__. | Alexandre Vassalotti | 2008-08-15 | 1 | -0/+12 |
|
|
* | Restore _pickle module accelerator module. | Alexandre Vassalotti | 2008-06-12 | 1 | -12/+13 |
|
|