summaryrefslogtreecommitdiff
path: root/Modules/_struct.c
Commit message (Expand)AuthorAgeFilesLines
* - Modules/_struct.c (unpackiter_type): Define static.doko@ubuntu.com2013-11-231-1/+1
* Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-1/+1
|\
| * Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-1/+1
* | Issue #14596: The struct.Struct() objects now use more compact implementation.Serhiy Storchaka2013-05-171-79/+94
* | Issue #17804: New function ``struct.iter_unpack`` allows for streaming struct...Antoine Pitrou2013-04-271-0/+165
* | Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...Antoine Pitrou2013-02-091-2/+2
|\ \ | |/
| * Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...Antoine Pitrou2013-02-091-2/+2
| |\
| | * Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...Antoine Pitrou2013-02-091-2/+2
* | | #14897: Enhance error messages of struct.pack and struct.pack_intoPetri Lehtinen2012-10-291-4/+14
|\ \ \ | |/ /
| * | #14897: Enhance error messages of struct.pack and struct.pack_intoPetri Lehtinen2012-10-291-4/+14
| |\ \ | | |/
| | * #14897: Enhance error messages of struct.pack and struct.pack_intoPetri Lehtinen2012-10-291-4/+14
* | | Issue #16166: Add PY_LITTLE_ENDIAN and PY_BIG_ENDIAN macros and unifiedChristian Heimes2012-10-171-11/+10
|/ /
* | Issue #15402: Simplify Struct.__sizeof__ and make tests more precise.Meador Inge2012-07-281-6/+2
|\ \ | |/
| * Issue #15402: Simplify Struct.__sizeof__ and make tests more precise.Meador Inge2012-07-281-6/+2
* | Issue #15402: Add a __sizeof__ method to struct.Struct.Meador Inge2012-07-231-0/+17
|\ \ | |/
| * Issue #15402: Add a __sizeof__ method to struct.Struct.Meador Inge2012-07-231-0/+17
* | Issue #3163: The struct module gets new format characters 'n' and 'N'Antoine Pitrou2011-10-061-1/+89
|/
* #11515: Merge with 3.1.Ezio Melotti2011-03-151-1/+1
|\
| * #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 via svnmerge fromMark Dickinson2010-07-181-2/+2
| * Merged revisions 82628,82630 via svnmerge fromBenjamin Peterson2010-07-071-2/+8
| * Merged revisions 81965 via svnmerge fromMark Dickinson2010-06-131-2/+2
| * Merged revisions 81961 via svnmerge fromMark Dickinson2010-06-121-1/+5
| * Merged revisions 81947-81950,81955-81956 via svnmerge fromMark Dickinson2010-06-121-22/+37
| * Merged revisions 81897-81898,81902 via svnmerge fromMark Dickinson2010-06-111-22/+29
| * Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-091-1252/+1252
| * Merged revisions 75284 via svnmerge fromMark Dickinson2009-10-081-6/+8
| * Merged revisions 73882 via svnmerge fromMark Dickinson2009-07-071-1/+1
| * Merged revisions 73623-73624 via svnmerge fromBenjamin Peterson2009-06-281-0/+2
* | Issue #10783: struct.pack() doesn't encode implicitly unicode to UTF-8Victor Stinner2010-12-281-21/+6
* | Include structseq.h in Python.h, and remove now-redundant includes in individ...Georg Brandl2010-11-301-1/+0
* | Issue #9422: Fix memory leak when re-initializing a struct.Struct object.Mark Dickinson2010-07-291-0/+3
* | Issue #9277: Struct module: standard bool packing was incorrect ifMark Dickinson2010-07-181-2/+2
* | don't ignore exceptions from PyObject_IsTrueBenjamin Peterson2010-07-071-2/+8
* | Remove unnecessary brackets from docstring optional arguments.Mark Dickinson2010-06-131-2/+2
* | Issue #8973: Expanded Struct.__doc__.Alexander Belopolsky2010-06-121-1/+5
* | More struct module docs and docstring tweaks.Mark Dickinson2010-06-121-4/+4
* | Issue #8973: Improve struct module docstrings.Mark Dickinson2010-06-121-22/+37
* | Remove accidental (yet-to-be-reviewed) docstring changes included in r81947.Mark Dickinson2010-06-121-28/+21
* | Issue #8973: Add __all__ to struct module, so that help(struct) correctlyMark Dickinson2010-06-121-21/+28
* | Remove unused variable.Mark Dickinson2010-06-121-1/+1
* | Issue #8981: Remove _struct.__version__.Mark Dickinson2010-06-121-6/+0
* | Fix more undefined-behaviour inducing overflow checks in struct module.Mark Dickinson2010-06-111-19/+23
* | Fix an incorrect return type.Mark Dickinson2010-06-111-1/+1
* | Avoid possible undefined behaviour from signed overflow.Mark Dickinson2010-06-111-3/+6
* | Issue #3129: Trailing digits in format string are no longer ignored.Alexander Belopolsky2010-06-111-2/+5
* | Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-1262/+1262
* | Merged revisions 79751 via svnmerge fromMark Dickinson2010-04-041-25/+25
* | Merged revisions 79745 via svnmerge fromMark Dickinson2010-04-041-6/+1