| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #10783: struct.pack() doesn't encode implicitly unicode to UTF-8 | Victor Stinner | 2010-12-28 | 1 | -21/+6 |
|
|
* | Include structseq.h in Python.h, and remove now-redundant includes in individ... | Georg Brandl | 2010-11-30 | 1 | -1/+0 |
|
|
* | Issue #9422: Fix memory leak when re-initializing a struct.Struct object. | Mark Dickinson | 2010-07-29 | 1 | -0/+3 |
|
|
* | Issue #9277: Struct module: standard bool packing was incorrect if | Mark Dickinson | 2010-07-18 | 1 | -2/+2 |
|
|
* | don't ignore exceptions from PyObject_IsTrue | Benjamin Peterson | 2010-07-07 | 1 | -2/+8 |
|
|
* | Remove unnecessary brackets from docstring optional arguments. | Mark Dickinson | 2010-06-13 | 1 | -2/+2 |
|
|
* | Issue #8973: Expanded Struct.__doc__. | Alexander Belopolsky | 2010-06-12 | 1 | -1/+5 |
|
|
* | More struct module docs and docstring tweaks. | Mark Dickinson | 2010-06-12 | 1 | -4/+4 |
|
|
* | Issue #8973: Improve struct module docstrings. | Mark Dickinson | 2010-06-12 | 1 | -22/+37 |
|
|
* | Remove accidental (yet-to-be-reviewed) docstring changes included in r81947. | Mark Dickinson | 2010-06-12 | 1 | -28/+21 |
|
|
* | Issue #8973: Add __all__ to struct module, so that help(struct) correctly | Mark Dickinson | 2010-06-12 | 1 | -21/+28 |
|
|
* | Remove unused variable. | Mark Dickinson | 2010-06-12 | 1 | -1/+1 |
|
|
* | Issue #8981: Remove _struct.__version__. | Mark Dickinson | 2010-06-12 | 1 | -6/+0 |
|
|
* | Fix more undefined-behaviour inducing overflow checks in struct module. | Mark Dickinson | 2010-06-11 | 1 | -19/+23 |
|
|
* | Fix an incorrect return type. | Mark Dickinson | 2010-06-11 | 1 | -1/+1 |
|
|
* | Avoid possible undefined behaviour from signed overflow. | Mark Dickinson | 2010-06-11 | 1 | -3/+6 |
|
|
* | Issue #3129: Trailing digits in format string are no longer ignored. | Alexander Belopolsky | 2010-06-11 | 1 | -2/+5 |
|
|
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -1262/+1262 |
|
|
* | Merged revisions 79751 via svnmerge from | Mark Dickinson | 2010-04-04 | 1 | -25/+25 |
|
|
* | Merged revisions 79745 via svnmerge from | Mark Dickinson | 2010-04-04 | 1 | -6/+1 |
|
|
* | add missing decrefs | Benjamin Peterson | 2010-04-03 | 1 | -0/+3 |
|
|
* | Merged revisions 79674 via svnmerge from | Mark Dickinson | 2010-04-03 | 1 | -4/+19 |
|
|
* | Internal refactoring in struct.pack: make all integer conversions go through... | Mark Dickinson | 2010-04-03 | 1 | -20/+20 |
|
|
* | Remove unused define. | Mark Dickinson | 2010-04-03 | 1 | -2/+0 |
|
|
* | Merged revisions 75283 via svnmerge from | Mark Dickinson | 2009-10-08 | 1 | -6/+8 |
|
|
* | Merged revisions 73880 via svnmerge from | Mark Dickinson | 2009-07-07 | 1 | -1/+1 |
|
|
* | Merged revisions 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,... | Benjamin Peterson | 2009-06-28 | 1 | -0/+2 |
|
|
* | Issue #5463: Remove deprecated float coercion from struct module, along | Mark Dickinson | 2009-04-19 | 1 | -77/+51 |
|
|
* | Issue #5463: Remove _PY_STRUCT_RANGE_CHECKING constant from struct | Mark Dickinson | 2009-03-29 | 1 | -1/+0 |
|
|
* | - Issue #5463: In struct module, remove deprecated overflow wrapping | Mark Dickinson | 2009-03-21 | 1 | -182/+7 |
|
|
* | #3694: fix an "XXX undetected error" leak in struct. | Georg Brandl | 2009-02-13 | 1 | -1/+1 |
|
|
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -1/+1 |
|
|
* | Replace PyNumber_Int with PyNumber_Long. | Mark Dickinson | 2009-01-17 | 1 | -3/+3 |
|
|
* | Issue 4910, patch 2 of (probably) 3: pave the way for renaming of | Mark Dickinson | 2009-01-15 | 1 | -2/+2 |
|
|
* | Merged revisions 68112,68115,68120,68133,68141-68142,68145-68146,68148-68149 ... | Georg Brandl | 2009-01-03 | 1 | -6/+6 |
|
|
* | Merged revisions 66693 via svnmerge from | Benjamin Peterson | 2008-09-30 | 1 | -0/+2 |
|
|
* | Merged revisions 65654 via svnmerge from | Martin v. Löwis | 2008-08-13 | 1 | -4/+4 |
|
|
* | Rename PyUnicode_AsString -> _PyUnicode_AsString and | Marc-André Lemburg | 2008-08-07 | 1 | -1/+1 |
|
|
* | update the struct documentation to refer to bytes | Benjamin Peterson | 2008-07-31 | 1 | -10/+10 |
|
|
* | Merged revisions 64119,64147,64150,64165,64219-64221,64229-64230,64233,64235,... | Amaury Forgeot d'Arc | 2008-06-17 | 1 | -0/+6 |
|
|
* | Implement PEP 3121: new module initialization and finalization API. | Martin v. Löwis | 2008-06-11 | 1 | -8/+22 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -16/+16 |
|
|
* | Renamed PyBytes to PyByteArray | Christian Heimes | 2008-05-26 | 1 | -6/+6 |
|
|
* | Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,... | Christian Heimes | 2008-03-16 | 1 | -3/+3 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-17 | 1 | -1/+1 |
|
|
* | Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge from | Christian Heimes | 2008-01-18 | 1 | -2/+1 |
|
|
* | Merged revisions 59680-59695 via svnmerge from | Christian Heimes | 2008-01-04 | 1 | -3/+236 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -4/+4 |
|
|
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -23/+23 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -50/+31 |
|
|