summaryrefslogtreecommitdiffstats
path: root/Python/marshal.c
Commit message (Expand)AuthorAgeFilesLines
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-1030/+1030
* Issue #7019: An attempt to unmarshal bad long data could produceMark Dickinson2009-10-031-1/+2
* Merged revisions 72601 via svnmerge fromR. David Murray2009-05-131-1/+1
* Merged revisions 72597 via svnmerge fromR. David Murray2009-05-131-5/+81
* Issue 3116: fix quadratic behavior in marshal.dumps().Raymond Hettinger2008-06-161-1/+1
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-18/+18
* Renamed PyString to PyBytesChristian Heimes2008-05-261-18/+18
* #1792: Improve performance of marshal.dumps() on large objects by increasingAndrew M. Kuchling2008-05-111-1/+4
* Fix refleakNeal Norwitz2008-02-011-0/+1
* Removed unused varChristian Heimes2008-01-301-1/+1
* Removed unnecessary conditional (spotted by Neal Norwitz).Raymond Hettinger2008-01-281-1/+1
* Let marshal built-up sets and frozensets one element at a time (without creat...Raymond Hettinger2008-01-281-12/+8
* Revert PySet_Add() changes.Raymond Hettinger2008-01-261-8/+12
* Let marshal build-up sets and frozensets one element at a time.Raymond Hettinger2008-01-261-12/+8
* Fix marshal's incorrect handling of subclasses of builtin types (backport can...Raymond Hettinger2007-11-071-10/+10
* Fix Coverity 185-186: If the passed in FILE is NULL, uninitialized memoryNeal Norwitz2007-10-121-0/+2
* Last try for tweaking the max stack depth. 5000 was the original value,Neal Norwitz2007-05-171-1/+1
* Set the depth to something very small to try to determine if theNeal Norwitz2007-05-171-1/+1
* Reduce the max stack depth to see if this fixes the segfaults onNeal Norwitz2007-05-171-1/+1
* Fix bug in marshal where bad data would cause a segfault due toNeal Norwitz2007-05-161-69/+156
* Forward-port of r52136,52138: a review of overflow-detecting code.Armin Rigo2006-10-041-13/+25
* This code is actually not used unless WITHOUT_COMPLEX is defined.Neal Norwitz2006-08-121-0/+8
* Convert more modules to METH_VARARGS.Georg Brandl2006-05-291-5/+3
* Change int to Py_ssize_t in several places.Martin v. Löwis2006-03-071-10/+26
* Make Py_ssize_t clean.Thomas Wouters2006-03-011-1/+3
* Fix incompatible assignment warning from previous checkin.Thomas Wouters2006-03-011-1/+2
* Fix gcc (4.0.x) warning about use of uninitialized variables.Thomas Wouters2006-03-011-1/+2
* Move cast to suppress warning.Martin v. Löwis2006-02-161-2/+2
* Merge ssize_t branch.Martin v. Löwis2006-02-151-11/+15
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* version was not initialized properlyNeal Norwitz2005-11-161-0/+1
* Fix a bunch of imports to use code.h instead of compile.h.Jeremy Hylton2005-10-211-1/+0
* Merge ast-branch to headJeremy Hylton2005-10-201-0/+1
* Add a C API for sets and frozensets.Raymond Hettinger2005-08-161-4/+2
* Fix signedness of various char variables to stop causing a warning under gcc 4.Brett Cannon2005-06-251-10/+10
* Fix bugMichael W. Hudson2005-06-131-0/+4
* Remove extraneous format character from PyArg_ParseTuple call inMichael W. Hudson2005-06-131-1/+1
* Fix a couple of crashing-on-malformed data marshal bugs.Michael W. Hudson2005-06-031-6/+8
* This is my patch:Michael W. Hudson2005-06-031-65/+175
* remove unused variableFred Drake2005-01-121-1/+0
* SF 1098985: set objects cannot be marshalledRaymond Hettinger2005-01-111-1/+66
* Any call to marshal.dumps() with the new optional argument 'version' justArmin Rigo2004-12-201-1/+1
* Patch #923098: Share interned strings in marshal.Martin v. Löwis2004-06-271-15/+74
* Make private function staticNeal Norwitz2004-06-131-1/+1
* Patch #774665: Make Python LC_NUMERIC agnostic.Martin v. Löwis2004-06-081-3/+3
* Marshal clean-up (SF patch #873224)Armin Rigo2004-03-261-63/+54
* Bug #794140: cygwin builds do not embedJason Tishler2003-09-041-1/+1
* Whitespace normalization.Thomas Heller2002-07-301-4/+4
* Fix SF 588452: debug build crashes on marshal.dumps([128] * 1000).Thomas Heller2002-07-301-6/+6
* Fix SF bug # 561858 Assertion with very long listsNeal Norwitz2002-06-141-10/+10