aboutsummaryrefslogtreecommitdiff
path: root/Modules/_struct.c
AgeCommit message (Expand)Author
2018-03-11bpo-30249: Improve struct.unpack_from() error messages (GH-6059)Xiang Zhang
2017-12-15bpo-32240: Add the const qualifier to declarations of PyObject* array argumen...Serhiy Storchaka
2017-09-14bpo-30246: fix several error messages which only mention bytes in struct (#1421)Xiang Zhang
2017-08-24bpo-31095: fix potential crash during GC (GH-2974)INADA Naoki
2017-07-03bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955)Serhiy Storchaka
2017-06-23bpo-21071: struct.Struct.format type is now str (#845)Victor Stinner
2017-06-15bpo-20627: Fix error message when keyword arguments are used (#2115)Sylvain
2017-06-02bpo-30245: Fix possible overflow when organize struct.pack_into error message...Johan Liu
2017-05-15bpo-30242: resolve some undefined behaviours in struct (#1418)Xiang Zhang
2017-05-15bpo-30224: remove outdated checks in struct (#1374)Xiang Zhang
2017-04-20bpo-29802: Fix reference counting in module-level struct functions (#1213)Serhiy Storchaka
2017-04-04bpo-29649: Improve struct.pack_into() boundary error messages (#424)Andrew Nester
2017-02-04Issue #29300: Use Argument Clinic for getting struct object from the format.Serhiy Storchaka
2017-02-02Rename struct.unpack() 2nd parameter to "buffer"Victor Stinner
2017-02-02Issue #29300: Convert _struct module to Argument ClinicVictor Stinner
2016-12-16Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of ...Serhiy Storchaka
2016-12-04Backed out changeset b9c9691c72c5Victor Stinner
2016-12-01Replace PyObject_CallFunctionObjArgs() with fastcallVictor Stinner
2016-10-04Closes #21124, #28337: Call PyType_Ready on unpackiter_type.Zachary Ware
2016-10-02Issue #21124: Fix building _struct on Cygwin.Zachary Ware
2016-09-19merge 3.5 (#28184)Benjamin Peterson
2016-09-07require C99 boolBenjamin Peterson
2016-09-06replace PY_LONG_LONG with long longBenjamin Peterson
2016-09-05require a long long data type (closes #27961)Benjamin Peterson
2016-09-03Issue #11734: Add support for IEEE 754 half-precision floats to the struct mo...Mark Dickinson
2016-04-15merge headsGregory P. Smith
2016-04-15Issue #26535: Correct docs regarding the struct buffer sizeMartin Panter
2016-04-06Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka
2016-04-06Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka
2015-12-27Issue #20440: Applied yet one patch for using Py_SETREF.Serhiy Storchaka
2015-12-27Issue #20440: Applied yet one patch for using Py_SETREF.Serhiy Storchaka
2015-12-25Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka
2015-12-25Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka
2015-12-19Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka
2015-02-03Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka
2015-02-03Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka
2014-08-16Issue #22156: Fix some "comparison between signed and unsigned integers"Victor Stinner
2014-05-14Issue #21490: Add new C macros: Py_ABS() and Py_STRINGIFY()Victor Stinner
2013-11-23 - Modules/_struct.c (unpackiter_type): Define static.doko@ubuntu.com
2013-08-27Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka
2013-08-27Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka
2013-05-17Issue #14596: The struct.Struct() objects now use more compact implementation.Serhiy Storchaka
2013-04-27Issue #17804: New function ``struct.iter_unpack`` allows for streaming struct...Antoine Pitrou
2013-02-09Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...Antoine Pitrou
2013-02-09Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...Antoine Pitrou
2013-02-09Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...Antoine Pitrou
2012-10-29#14897: Enhance error messages of struct.pack and struct.pack_intoPetri Lehtinen
2012-10-29#14897: Enhance error messages of struct.pack and struct.pack_intoPetri Lehtinen
2012-10-29#14897: Enhance error messages of struct.pack and struct.pack_intoPetri Lehtinen
2012-10-17Issue #16166: Add PY_LITTLE_ENDIAN and PY_BIG_ENDIAN macros and unifiedChristian Heimes