aboutsummaryrefslogtreecommitdiff
path: root/Python/marshal.c
AgeCommit message (Expand)Author
2020-12-01bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)Victor Stinner
2020-11-12bpo-42246: Partial implementation of PEP 626. (GH-23113)Mark Shannon
2020-09-08bpo-1635741: Port mashal module to multi-phase init (#22149)Victor Stinner
2020-07-03bpo-41180: Audit code.__new__ when unmarshalling (GH-21271)tkmikan
2020-05-14bpo-40602: Write unit tests for _Py_hashtable_t (GH-20091)Victor Stinner
2020-05-13bpo-40609: _Py_hashtable_t values become void* (GH-20065)Victor Stinner
2020-05-13bpo-40609: Add destroy functions to _Py_hashtable (GH-20062)Victor Stinner
2020-05-13bpo-40609: Remove _Py_hashtable_t.key_size (GH-20060)Victor Stinner
2020-05-12bpo-40602: Rename hashtable.h to pycore_hashtable.h (GH-20044)Victor Stinner
2020-03-31bpo-39943: Clean up marshal.c. (GH-19236)Serhiy Storchaka
2020-02-11closes bpo-39605: Fix some casts to not cast away const. (GH-18453)Andy Lester
2020-02-07bpo-39573: Use Py_SET_SIZE() function (GH-18402)Victor Stinner
2020-02-07bpo-39573: Use Py_TYPE() macro in Python and Include directories (GH-18391)Victor Stinner
2019-11-20bpo-38823: Fix refleak in marshal init error path (GH-17260)Brandt Bucher
2019-07-11bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)Jeroen Demeyer
2019-07-01bpo-37221: Add PyCode_NewWithPosOnlyArgs to be used internally and set PyCode...Pablo Galindo
2019-04-29bpo-36540: PEP 570 -- Implementation (GH-12701)Pablo Galindo
2018-12-07bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...Zackery Spytz
2018-07-24bpo-33720: Refactor marshalling/unmarshalling floats. (GH-8071)Serhiy Storchaka
2018-06-04bpo-33720: Reduces maximum marshal recursion depth on release builds. (GH-7401)Steve Dower
2017-11-15bpo-32011: Revert "Issue #15480: Remove the deprecated and unused TYPE_INT64 ...Serhiy Storchaka
2017-09-07remove current_filename optimization from marshal (#3423) (closes bpo-31384)Benjamin Peterson
2017-08-21bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (...Stefan Krah
2017-03-12bpo-20185: Convert the marshal module to Argument Clinic. (#541)Serhiy Storchaka
2017-03-12bpo-29746: Update marshal docs to Python 3. (#547)Serhiy Storchaka
2016-12-09Use _PyObject_CallMethodIdObjArgs()Victor Stinner
2016-12-01Replace PyObject_CallFunction() with fastcallVictor Stinner
2016-09-13Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly opt...Christian Heimes
2016-03-23Cleanup hashtable.hVictor Stinner
2016-03-23Issue #26588:Victor Stinner
2016-03-21hashtable.h now supports keys of any sizeVictor Stinner
2016-03-21Ooops, revert changeset ea9efa06c137Victor Stinner
2016-03-18_tracemalloc: add domain to trace keysVictor Stinner
2016-01-23Issue #26146: marshal.loads() now uses the empty frozenset singletonVictor Stinner
2015-12-25Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka
2015-12-18Issue #25899: Converted non-ASCII characters in docstrings and manpageSerhiy Storchaka
2015-03-30Issue #23752: _Py_fstat() is now responsible to raise the Python exceptionVictor Stinner
2015-03-24Issue #23753: Python doesn't support anymore platforms without stat() orVictor Stinner
2015-02-21Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Wind...Steve Dower
2015-02-16Issue #23450: Fixed possible integer overflows.Serhiy Storchaka
2015-02-11Splitted the WFILE structure to WFILE and RFILE.Serhiy Storchaka
2015-02-11Issue #23344: marshal.dumps() is now 20-25% faster on average.Serhiy Storchaka
2015-02-11Issue #20416: marshal.dumps() with protocols 3 and 4 is now 40-50% faster onSerhiy Storchaka
2015-01-28Fixed memory leak in marshal.Serhiy Storchaka
2015-01-28Fixed memory leak in marshal.Serhiy Storchaka
2014-12-05Issue #22581: Use more "bytes-like object" throughout the docs and comments.Serhiy Storchaka
2014-12-05Issue #22581: Use more "bytes-like object" throughout the docs and comments.Serhiy Storchaka
2014-11-01#22734 marshal needs a lower stack depth for debug builds on WindowsSteve Dower
2014-05-14Issue #21490: Add new C macros: Py_ABS() and Py_STRINGIFY()Victor Stinner
2013-11-16Fix compiler warning (on Windows 64-bit): explicit cast Py_ssize_t to unsignedVictor Stinner