summaryrefslogtreecommitdiff
path: root/Modules/arraymodule.c
Commit message (Expand)AuthorAgeFilesLines
...
| | | * | 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-201-1/+78
| | | * | Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.Brian Curtin2011-08-101-4/+2
| | | * | Revert a reversed comparison order introduced in r70695.Brett Cannon2011-06-071-1/+1
| | | * | Remove some extraneous parentheses and swap the comparison order toBrett Cannon2011-06-061-1/+1
| | | * | Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon2011-02-221-1/+0
* | | | | Code style fixup: No need for double ((parenthesis)) and use {} on an if else.Gregory P. Smith2012-12-101-4/+5
| |_|_|/ |/| | |
* | | | Issue #15424: Add a __sizeof__ implementation for array objects.Meador Inge2012-08-101-0/+15
|/ / /
* | | Fix docstring typo.Florent Xicluna2011-12-091-1/+1
|/ /
* | Issue #13255: wrong docstrings in array module.Florent Xicluna2011-10-241-4/+4
|/
* 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
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-2/+2
* Issue #4583: crash after resizing an array.array which has buffer exports.Antoine Pitrou2008-12-181-96/+46
* Merged revisions 65654 via svnmerge fromMartin v. Löwis2008-08-131-0/+2
* Merged revisions 65182 via svnmerge fromGeorg Brandl2008-07-231-1/+4
* Merged revisions 64114 via svnmerge fromAmaury Forgeot d'Arc2008-06-181-2/+33
* Merged revisions 64119,64147,64150,64165,64219-64221,64229-64230,64233,64235,...Amaury Forgeot d'Arc2008-06-171-6/+10
* Merged revisions 64226 via svnmerge fromMartin v. Löwis2008-06-131-1/+1
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-5/+21
* Remove locking from buffer protocol as-per discussion.Travis E. Oliphant2008-06-061-5/+0
* Renamed PyString to PyBytesChristian Heimes2008-05-261-6/+6
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-261-2/+2
* Remove the deprecated array.read/write methods.Georg Brandl2008-02-011-9/+2
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-115/+115
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-10/+10
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-6/+10
* Fix typo: formats -> format. (Only mattered in wide unicode builds.)Guido van Rossum2007-10-141-1/+1
* Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer i...Travis E. Oliphant2007-10-131-6/+6
* Fix typo in arraymodule.c (?) -- it's PyBUF_LOCK, not PyBUF_LOCKDATA.Guido van Rossum2007-10-131-1/+1