summaryrefslogtreecommitdiffstats
path: root/Modules/arraymodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-191-1/+1
* Issue #24613: Calling array.fromstring() with self is no longer allowedSerhiy Storchaka2015-07-261-0/+5
* Fixed the array module in unicode disabled build (regression of issue20014).Serhiy Storchaka2015-05-311-0/+2
* Issue #20014: array.array() now accepts unicode typecodes. Based on patch bySerhiy Storchaka2015-05-161-3/+15
* Issue #15424: Add a __sizeof__ implementation for array objects.Meador Inge2012-08-111-0/+15
* Fix docstring typo.Florent Xicluna2011-12-091-1/+1
* Reverted r87944 - issue #5109 should not have been backportedAlexander Belopolsky2011-01-111-16/+5
* Merged revisions 87942 via svnmerge fromAlexander Belopolsky2011-01-111-5/+16
* Merged revisions 83751-83752 via svnmerge fromMark Dickinson2010-08-061-2/+2
* Merged revisions 83030 via svnmerge fromAntoine Pitrou2010-07-211-2/+8
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-1515/+1515
* Silence more 'comparison between signed and unsigned' warnings.Mark Dickinson2010-02-141-2/+2
* Issue #7788: Fix a crash produced by deleting a list slice with hugeMark Dickinson2010-01-291-2/+3
* Issue #2389: Pickle array objects using a list representation for portabilityAlexandre Vassalotti2009-07-151-35/+33
* Issue #5341: Fix a variety of spelling errors.Mark Dickinson2009-02-211-6/+6
* Issue #2620: Overflow checking when allocating or reallocating memoryGregory P. Smith2008-07-221-1/+4
* Make more symbols static.Martin v. Löwis2008-06-131-1/+1
* Fix some memory dealloc problems when exceptions occur.Neal Norwitz2008-06-131-8/+7
* Merge in release25-maint r60793:Gregory P. Smith2008-06-111-1/+37
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-9/+9
* Renamed PyString to PyBytesChristian Heimes2008-05-261-9/+9
* A little reformating of Py3k warningsBenjamin Peterson2008-04-271-2/+2
* Use PyErr_WarnPy3k throughoutBenjamin Peterson2008-04-271-8/+4
* #2359: add Py3k warning for array.read/array.write.Georg Brandl2008-03-251-2/+26
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-120/+120
* Improve extended slicing support in builtin types and classes. Specifically:Thomas Wouters2007-08-281-92/+136
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-120/+118
* Array module's buffer interface can now handle empty arrays.Raymond Hettinger2007-04-021-0/+6
* SF #1693079: Cannot save empty array in shelveRaymond Hettinger2007-04-021-6/+13
* Bug #1486663: don't reject keyword arguments for subclasses of builtinGeorg Brandl2007-01-211-1/+1
* Fix SF bug #1545837: array.array borks on deepcopy.Thomas Wouters2006-08-241-1/+1
* Patch #1538606, Patch to fix __index__() clipping.Neal Norwitz2006-08-121-8/+4
* Klocwork made another run and found a bunch more problems.Neal Norwitz2006-08-121-0/+4
* Patch #1495999: Part two of Windows CE changes.Martin v. Löwis2006-06-101-2/+2
* Buffer objects would return the read or write buffer for a wrapped object whenBrett Cannon2006-06-081-0/+1
* Support for buffer protocol for socket and struct.Martin Blais2006-05-261-3/+3
* C++ compiler cleanup: a cast here, a cast there... still does not compile und...Skip Montanaro2006-04-181-3/+4
* Use Py_VISIT in all tp_traverse methods, instead of traversing manually orThomas Wouters2006-04-151-2/+1
* Whitespace: break long lineNeal Norwitz2006-04-031-1/+2
* Checking in the code for PEP 357.Guido van Rossum2006-03-071-18/+11
* SF #1444030: Fix several potential defects found by Coverity.Hye-Shik Chang2006-03-071-4/+7
* Convert array.array.insert to use Py_ssize_t (like the rest already does.)Thomas Wouters2006-02-271-2/+2
* Bug #1432350: arrayobject should use PyObject_VAR_HEADGeorg Brandl2006-02-171-2/+1
* Use correct format specifier for Py_ssize_t variable to PyArg_ParseTuple().Thomas Wouters2006-02-161-1/+1
* Use Py_ssize_t for counts and sizes.Martin v. Löwis2006-02-161-16/+13
* Merge ssize_t branch.Martin v. Löwis2006-02-151-94/+99
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Disallow keyword arguments for type constructors that don't use them.Georg Brandl2005-08-261-12/+3
* SF #1085304: Make array.array pickle-ableRaymond Hettinger2004-12-161-0/+25
* SF feature request #992967: array.array objects should support sequences.Raymond Hettinger2004-08-291-6/+20