summaryrefslogtreecommitdiff
path: root/Python/marshal.c
Commit message (Expand)AuthorAgeFilesLines
* fix marshal uninitialized variable warnings (#4114)Benjamin Peterson2017-10-241-0/+6
* reduce marshal stack size in debug mode on windows (closes #27019)Benjamin Peterson2016-07-061-0/+5
* Fix reference leaks introduced by the patch for issue #5308.Serhiy Storchaka2013-07-111-9/+11
* Issue #5308: Raise ValueError when marshalling too large object (a sequenceSerhiy Storchaka2013-02-131-56/+56
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-1089/+1089
* Issue #7332: Remove the 16KB stack-based buffer inAntoine Pitrou2010-04-211-16/+4
* more _PyString_Resize error checkingBenjamin Peterson2010-04-031-1/+2
* Set retval on PyOS_string_to_double failure.Mark Dickinson2009-10-311-3/+9
* Removed PyOS_ascii_atof from marshal.c, as mentioned in issue 7117. Also brin...Eric Smith2009-10-271-11/+9
* Removed calls to PyFloat_AsReprString.Eric Smith2009-10-191-42/+63
* Issue #7019: Unmarshalling of bad long data could produce unnormalizedMark Dickinson2009-09-291-3/+13
* Move news item to correct section, remove spurious 'see below'R. David Murray2009-05-131-1/+1
* Issue 5994: add docstrings to marshal.R. David Murray2009-05-131-5/+81
* Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms.Mark Dickinson2009-03-201-39/+105
* Make marshalling errors a little more informative as to what went wrongNick Coghlan2009-03-151-13/+13
* 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