summaryrefslogtreecommitdiffstats
path: root/Python/marshal.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 60475-60479,60481-60488 via svnmerge fromChristian Heimes2008-02-011-0/+1
* Merged revisions 60441-60474 via svnmerge fromChristian Heimes2008-01-311-1/+1
* Merged revisions 60383-60407 via svnmerge fromChristian Heimes2008-01-291-12/+8
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-2/+2
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-2/+2
* Merged revisions 58886-58929 via svnmerge fromGuido van Rossum2007-11-101-9/+9
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-50/+3
* Merged revisions 58221-58741 via svnmerge fromGuido van Rossum2007-11-011-0/+2
* Change PyBuffer to Py_buffer to be consistent with other non-object structure...Travis E. Oliphant2007-09-231-1/+1
* [Oops, I forgot half of the patch.]Guido van Rossum2007-08-291-0/+5
* Merged in py3k-buffer branch to main line. All objects now use the buffer pr...Travis E. Oliphant2007-08-181-2/+10
* Add a missing "rf.depth = 0;" to marshal_load().Guido van Rossum2007-07-301-0/+1
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-2/+2
* Rip out the file object's implementation.Guido van Rossum2007-06-121-58/+29
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-68/+155
* Merged revisions 55270-55324 via svnmerge fromGuido van Rossum2007-05-141-9/+3
* Make test_marshal pass. Not my best work. :-(Guido van Rossum2007-05-091-5/+38
* More coding by random modification.Guido van Rossum2007-05-041-3/+3
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-4/+0
* Support marshal.dump(x, f) where f is not a real file.Guido van Rossum2007-04-131-3/+8
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-141-20/+23
* Remove PyFloat_AsReprString() and PyFloat_AsString() which should notNeal Norwitz2006-12-281-20/+6
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-14/+26
* Jiwon Seo's PEP 3102 implementation.Guido van Rossum2006-10-271-1/+5
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-0/+8
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-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