summaryrefslogtreecommitdiffstats
path: root/Modules/arraymodule.c
Commit message (Expand)AuthorAgeFilesLines
* Make indentation consistent and remove dead commented-out code.Eli Bendersky2012-12-311-7/+5
* Code style fixup: No need for double ((parenthesis)) and use {} on an if else.Gregory P. Smith2012-12-111-4/+5
|\
| * Code style fixup: No need for double ((parenthesis)) and use {} on an if else.Gregory P. Smith2012-12-111-4/+5
* | Issue #16096: Fix several occurrences of potential signed integer overflow. ...Mark Dickinson2012-10-061-4/+8
* | Issue #15424: Add a __sizeof__ implementation for array objects.Meador Inge2012-08-111-0/+15
|\ \ | |/
| * Issue #15424: Add a __sizeof__ implementation for array objects.Meador Inge2012-08-111-0/+15
* | Close #13072: Restore code before the PEP 393 for the array moduleVictor Stinner2012-08-051-38/+48
* | Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in t...Antoine Pitrou2012-04-041-1/+1
* | Issue #14288: Serialization support for builtin iterators.Kristján Valur Jónsson2012-04-031-1/+29
* | Merge 3.2Florent Xicluna2011-12-091-1/+1
|\ \ | |/
| * Fix docstring typo.Florent Xicluna2011-12-091-1/+1
* | Remove mention of narrow/wide builds and update array doc, add a test.Ezio Melotti2011-10-251-4/+1
* | Merge 3.2.Florent Xicluna2011-10-241-4/+4
|\ \ | |/
| * Issue #13255: wrong docstrings in array module.Florent Xicluna2011-10-241-4/+4
* | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-4/+4
* | Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-101-3/+5
* | Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-2/+5
* | Fix a compiler warningVictor Stinner2011-09-291-1/+1
* | Fix array.array('u') constructorVictor Stinner2011-09-291-6/+12
* | array module uses the new Unicode APIVictor Stinner2011-09-291-33/+30
* | array module stores the typecode in a char, instead of Py_UNICODEVictor Stinner2011-09-291-19/+16
* | Rename new macros to conform to naming rules (function macros have "Py" prefi...Georg Brandl2011-09-281-1/+1
* | Implement PEP 393.Martin v. Löwis2011-09-281-4/+4
* | Issue #1621: Fix undefined behaviour from signed overflow in datetime module ...Mark Dickinson2011-09-251-1/+1
* | Issue #1172711: Add 'long long' support to the array module.Meador Inge2011-09-211-1/+78
* | Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.Brian Curtin2011-08-111-4/+2
* | Revert a reversed comparison order introduced in r70695.Brett Cannon2011-06-081-1/+1
* | Remove some extraneous parentheses and swap the comparison order toBrett Cannon2011-06-071-1/+1
* | Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon2011-02-221-1/+0
|/
* Issue #5109: array.array constructor will now use fast code whenAlexander Belopolsky2011-01-111-5/+15
* #1569291: speed up array.repeat() by making only O(log n) memcpy() calls; the...Georg Brandl2010-12-041-9/+17
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-2/+2
* Fix compilation warnings seen on Windows.Amaury Forgeot d'Arc2010-11-251-7/+7
* Issue #10359: Use Py_UNICODE for the typecode in arrayVictor Stinner2010-11-091-7/+9
* Issue #8990: array.fromstring() and array.tostring() get renamed toAntoine Pitrou2010-09-011-17/+77
* Issue #9526: Remove outdated casts to int that were preventing the array mod...Mark Dickinson2010-08-061-2/+2
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-1923/+1923
* Merged revisions 78189 via svnmerge fromMark Dickinson2010-02-141-2/+2
* Merged revisions 77821 via svnmerge fromMark Dickinson2010-01-291-2/+3
* Silence gcc warning about possibly uninitialized variable 'converted_items'Mark Dickinson2009-10-261-0/+2
* Use the proper autoconf macro for checking byte order.Alexandre Vassalotti2009-07-171-1/+1
* Fix omission in a comment.Alexandre Vassalotti2009-07-151-1/+1
* Issue #2389: Implement a portable mechanism for pickling array objects.Alexandre Vassalotti2009-07-151-49/+515
* #6430: remove mention of "w" array typecode.Georg Brandl2009-07-111-1/+0
* Add the fix for issue 4509 to the mapping methods.Alexandre Vassalotti2009-07-051-0/+10
* Fix array.extend and array.__iadd__ to handle the case where an arrayAlexandre Vassalotti2009-07-051-3/+5
* Issue 4509: Do not modify an array if we know the change would resultAlexandre Vassalotti2009-07-051-0/+8
* Py_BuildValue's 'c' code should use byte strings #5666Benjamin Peterson2009-04-031-2/+2
* Issue #5334: array.fromfile() failed to insert values when EOFError was raised.Hirokazu Yamamoto2009-03-061-6/+11
* Merged revisions 69846 via svnmerge fromMark Dickinson2009-02-211-6/+6