summaryrefslogtreecommitdiffstats
path: root/Modules/_pickle.c
Commit message (Expand)AuthorAgeFilesLines
* Port SetAttrString/HasAttrString to SetAttrId/GetAttrId.Martin v. Löwis2011-10-141-3/+4
* Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-12/+12
* Issue #13088: Add shared Py_hexdigits constant to format a number into base 16Victor Stinner2011-10-141-13/+12
* Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-101-12/+22
* Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-4/+10
* Issue #7689: Allow pickling of dynamically created classes when theirAntoine Pitrou2011-10-041-4/+4
|\
| * Issue #7689: Allow pickling of dynamically created classes when theirAntoine Pitrou2011-10-041-4/+4
* | raw_unicode_escape() uses the new Unicode APIVictor Stinner2011-09-291-46/+21
* | Strip trailing spaces of _pickle.cVictor Stinner2011-09-291-17/+17
* | Implement PEP 393.Martin v. Löwis2011-09-281-3/+1
* | merge 3.2Benjamin Peterson2011-09-231-6/+5
|\ \ | |/
| * fix compiler compliant about \0 not being an opcodeBenjamin Peterson2011-09-231-6/+5
* | Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments inAntoine Pitrou2011-08-291-1/+10
|\ \ | |/
| * Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments inAntoine Pitrou2011-08-291-1/+10
* | Issue #11564: Avoid crashes when trying to pickle huge objects or containersAntoine Pitrou2011-08-291-72/+103
|\ \ | |/
| * Issue #11564: Avoid crashes when trying to pickle huge objects or containersAntoine Pitrou2011-08-291-72/+103
* | Followup to 8e824e09924a: fix regression on 32-bit buildsAntoine Pitrou2011-08-131-2/+5
* | Issue #12744: Fix inefficient representation of integersAntoine Pitrou2011-08-131-1/+1
* | Issue #12687: Fix a possible buffering bug when unpickling text mode (protoco...Antoine Pitrou2011-08-111-2/+1
|\ \ | |/
| * Issue #12687: Fix a possible buffering bug when unpickling text mode (protoco...Antoine Pitrou2011-08-111-2/+1
* | Issue #11321: Fix a crash with multiple imports of the _pickle module whenAntoine Pitrou2011-07-151-0/+2
|\ \ | |/
| * Issue #11321: Fix a crash with multiple imports of the _pickle module whenAntoine Pitrou2011-07-151-0/+2
* | #11565: Merge with 3.2.Ezio Melotti2011-03-161-1/+1
|\ \ | |/
| * #11565: Merge with 3.1.Ezio Melotti2011-03-161-1/+1
| |\
| | * #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
| | * Merged revisions 88147 via svnmerge fromAntoine Pitrou2011-01-231-5/+15
| | * Merged revisions 84502 via svnmerge fromAntoine Pitrou2010-09-041-2/+2
| | * Merged revisions 82937 via svnmerge fromAlexander Belopolsky2010-07-171-24/+14
| | * Merged revisions 80031 via svnmerge fromVictor Stinner2010-04-131-2/+4
| | * Merged revisions 77355 via svnmerge fromAntoine Pitrou2010-01-071-1/+1
| * | Merged revisions 88546 via svnmerge fromAlexander Belopolsky2011-02-241-5/+0
* | | Issue #9935: Speed up pickling of instances of user-defined classes.Antoine Pitrou2011-03-111-17/+34
* | | Issue #11286: Fixed unpickling of empty 2.x strings.Alexander Belopolsky2011-02-241-5/+0
|/ /
* | Issue #10987: Fix the recursion limit handling in the _pickle module.Antoine Pitrou2011-01-231-12/+19
* | Issue #10359: Remove useless comma, invalid in ISO CVictor Stinner2010-11-091-2/+2
* | Revert r85797 (and r85798): it broke the Windows buildbots because ofAntoine Pitrou2010-10-221-34/+17
* | Issue #9935: Speed up pickling of instances of user-defined classes.Antoine Pitrou2010-10-221-17/+34
* | Remove more unneeded casts to hashfunc.Georg Brandl2010-10-181-2/+2
* | make hashes always the size of pointers; introduce Py_hash_t #9778Benjamin Peterson2010-10-171-1/+1
* | Issue #3873: Speed up unpickling from file objects which have a peek()Antoine Pitrou2010-10-121-24/+93
* | Issue #9410: Various optimizations to the pickle module, leading toAntoine Pitrou2010-09-091-519/+1830
* | Fix typos in error messages (thanks Arfrever).Antoine Pitrou2010-09-041-2/+2
* | Issue #5180: Fixed a bug that prevented loading 2.x pickles in 3.xAlexander Belopolsky2010-07-171-24/+14
* | Issue #8383: pickle and pickletools use surrogatepass error handler whenVictor Stinner2010-04-131-2/+4
* | Merged revisions 77352-77354 via svnmerge fromAntoine Pitrou2010-01-071-1/+1
|/
* Issue #6137: The pickle module now translates module names when loadingAntoine Pitrou2009-06-041-41/+240
* Merged revisions 72930 via svnmerge fromCollin Winter2009-05-261-9/+8
* Make variable declarations for opcodes in batch_dict_exact consistentAlexandre Vassalotti2009-05-251-5/+5
* Merged revisions 72909 via svnmerge fromCollin Winter2009-05-251-9/+81
* Issue #5914: Add new C-API function PyOS_string_to_double, to complementMark Dickinson2009-05-031-7/+7