summaryrefslogtreecommitdiffstats
path: root/Python/marshal.c
Commit message (Expand)AuthorAgeFilesLines
* Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-3/+3
* Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-3/+8
* Implement PEP 393.Martin v. Löwis2011-09-281-3/+1
* Merge from 3.2 (#10318, #12255, #12043, #12417 and other fixes)Éric Araujo2011-07-291-3/+3
|\
| * Fix style in code added by edba722f3b02Éric Araujo2011-07-261-3/+3
| * Removed some unused local variables.Vinay Sajip2011-07-021-2/+0
* | Correct uninitialized data problem in marshal code.Vinay Sajip2011-07-021-0/+1
* | Removed breaking typo accidentally introduced during merge with 3.2.Vinay Sajip2011-07-021-4/+0
* | Closes #12291 for 3.3 - merged fix from 3.2.Vinay Sajip2011-07-021-59/+155
|\ \ | |/
| * Closes #12291: Fixed bug which was found when doing multiple loads from one ...Vinay Sajip2011-07-021-60/+155
* | try to use the same str object for all code filenames when compiling or unmar...Benjamin Peterson2011-05-271-0/+19
* | remove unused string WILFE attributeBenjamin Peterson2011-05-271-16/+0
|/
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-1065/+1065
* Merged revisions 80325 via svnmerge fromAntoine Pitrou2010-04-211-16/+4
* Issue 7147 - remove ability to attempt to build Python without complex number...Skip Montanaro2009-10-181-4/+0
* Merged revisions 75141 via svnmerge fromMark Dickinson2009-09-291-3/+13
* Merged revisions 72597 via svnmerge fromR. David Murray2009-05-131-7/+79
* Rename the surrogates error handler to surrogatepass.Martin v. Löwis2009-05-101-2/+2
* Issue #5914: Add new C-API function PyOS_string_to_double, to complementMark Dickinson2009-05-031-14/+11
* Issue #3672: Reject surrogates in utf-8 codec; add surrogates errorMartin v. Löwis2009-05-021-2/+4
* Added handling of PyOS_double_to_string out-of-memory errors. Closes issue 5775.Eric Smith2009-04-211-27/+41
* Make sure that marshal and pickle continue to output 17Mark Dickinson2009-04-171-3/+3
* The other half of Issue #1580: use short float repr where possible.Eric Smith2009-04-161-8/+18
* Issue #4258: Make it possible to use 30-bit digits for PyLongs:Mark Dickinson2009-03-181-40/+106
* Merged revisions 70378 via svnmerge fromNick Coghlan2009-03-151-12/+12
* fixes deferred/release blocker issue #3797: Fixed the dbm, marshal, mmap,Gregory P. Smith2008-09-061-4/+4
* Merged revisions 65654 via svnmerge fromMartin v. Löwis2008-08-131-1/+5
* Rename a variable to be more in line with the name of the module.Brett Cannon2008-06-271-2/+2
* Merged revisions 64119,64147,64150,64165,64219-64221,64229-64230,64233,64235,...Amaury Forgeot d'Arc2008-06-171-1/+1
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-2/+17
* #2957: marshal recursion limit exceeded when importing a large .pyc fileAmaury Forgeot d'Arc2008-05-261-2/+0
* Renamed PyString to PyBytesChristian Heimes2008-05-261-19/+19
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-261-4/+4
* Merged revisions 62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,...Alexandre Vassalotti2008-05-161-1/+4
* 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