summaryrefslogtreecommitdiff
path: root/Modules/_struct.c
Commit message (Expand)AuthorAgeFilesLines
* #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
* Merged revisions 83239 via svnmerge fromMark Dickinson2010-07-291-0/+3
* Merged revisions 82941,82943 via svnmerge fromMark Dickinson2010-07-181-2/+2
* Merged revisions 82628,82630 via svnmerge fromBenjamin Peterson2010-07-071-2/+8
* Fix possible undefined behaviour from signed overflow in struct module.Mark Dickinson2010-06-111-22/+29
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-1259/+1259
* A handful of whitespace fixes in Modules/_struct.c.Mark Dickinson2010-04-041-20/+20
* Issue #8300 (__index__ handling in struct.pack): Remove redundant checkMark Dickinson2010-04-041-6/+1
* Issue #8300: Let struct.pack use __index__ to convert and pack non-integers.Mark Dickinson2010-04-031-11/+39
* Silence compiler warning.Mark Dickinson2010-03-071-1/+4
* Issue #1530559: When packing a non-integer with any integer conversionMark Dickinson2010-03-071-12/+52
* Remove the redundant #define: PY_STRUCT_FLOAT_COERCEMark Dickinson2010-03-051-13/+0
* Fix incorrect stacklevel for DeprecationWarnings originating from the struct ...Mark Dickinson2010-03-051-1/+1
* Issue #7078: _struct.__doc__ was being ignored. Import it into struct.Mark Dickinson2009-10-081-8/+10
* Eliminate unnecessary get_wrapped_(u)long defines in struct module.Mark Dickinson2009-09-271-9/+6
* Issue #1523: Remove deprecated overflow masking in struct module, andMark Dickinson2009-07-071-219/+32
* Typo in error messageMark Dickinson2009-07-071-1/+1
* Issues #1530559, #1741130: Fix various inconsistencies in struct.packMark Dickinson2009-07-051-109/+107
* Fix nearly all compilation warnings under Apple gcc-4.0. Tested with OPT="-gJeffrey Yasskin2009-05-291-0/+2
* #4228: Pack negative values the same way as 2.4Georg Brandl2009-01-011-6/+6
* Victor Stinner's patches to check the return result of PyLong_Ssize_tBenjamin Peterson2008-09-301-0/+2
* Merge in release25-maint r60793:Gregory P. Smith2008-06-111-0/+6
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-19/+19
* Renamed PyString to PyBytesChristian Heimes2008-05-261-19/+19
* Issue 1872: Changed the struct module typecode from 't' to '?', forThomas Heller2008-03-051-3/+3
* Crashers of the day: Py_CLEAR must be used when there is a chance that theAmaury Forgeot d'Arc2008-02-161-1/+1
* clearcache() needs to remove the dict as well as clear it.Raymond Hettinger2008-01-181-2/+1
* Added _struct._clearcache() for regression testsChristian Heimes2008-01-041-1/+13
* Finish-up the struct module optimizations started at the Iceland NFS sprint.Raymond Hettinger2008-01-041-1/+205
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-4/+4
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-6/+5
* Stop using METH_OLDARGS implicitlyNeal Norwitz2007-05-221-1/+1
* Make pythoncore compile cleanly with VisualStudio 2005. Used an explicit typ...Kristján Valur Jónsson2007-04-251-2/+2
* Bug #1563759: struct.unpack doens't support buffer protocol objectsRaymond Hettinger2007-04-051-7/+25
* Patch #1610575: Add support for _Bool to struct.Martin v. Löwis2007-01-211-0/+49
* Fix #1530559, struct.pack raises TypeError where it used to convert.Bob Ippolito2006-08-041-0/+60
* Add PyErr_WarnEx() so C code can pass the stacklevel to warnings.warn().Neal Norwitz2006-07-301-4/+6
* Wrap some long linesNeal Norwitz2006-06-111-15/+10
* s_methods[]: Stop compiler warnings by castingTim Peters2006-06-041-1/+2
* Fixes in struct and socket from merge reviews.Martin Blais2006-06-041-15/+13
* Repaired error in new comment.Tim Peters2006-05-311-4/+4
* _range_error(): Speed and simplify (there's no real need forTim Peters2006-05-311-17/+19
* Trimmed trailing whitespace.Tim Peters2006-05-311-22/+22
* Calculate smallest properly (it was off by one) and use proper ssize_t types ...Neal Norwitz2006-05-311-5/+5
* Change wrapping terminology to overflow maskingBob Ippolito2006-05-301-18/+18
* struct: modulo math plus warning on all endian-explicit formats for compatibi...Bob Ippolito2006-05-291-11/+163
* Silence a warning.Armin Rigo2006-05-291-1/+1
* simplify the struct code a bit (no functional changes)Bob Ippolito2006-05-291-23/+31
* Fix ref-antileak in _struct.c which eventually lead to deallocating None.Georg Brandl2006-05-281-1/+1
* fix struct regression on 64-bit platformsBob Ippolito2006-05-271-22/+36