summaryrefslogtreecommitdiffstats
path: root/Modules/arraymodule.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Add weakref support to array.array and file objects.Raymond Hettinger2004-05-311-2/+7
* SF feature request #686323: Minor array module enhancementsRaymond Hettinger2004-03-141-9/+34
* Update the array overallocation scheme to match the approach used forRaymond Hettinger2004-03-141-61/+76
* SF bug #910986: copy.copy fails for array.arrayRaymond Hettinger2004-03-131-0/+15
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-1/+1
* SF bug #782369: Massive memory leak in array moduleRaymond Hettinger2003-08-051-2/+7
* All calls to getarrayitem() (which is static) are done either in loopsWalter Dörwald2003-05-231-4/+1
* Fix array.array.insert(), so that it treats negative indices asWalter Dörwald2003-05-181-2/+5
* SF 686323: Minor array module enhancementsRaymond Hettinger2003-04-241-4/+6
* SF Patch 685051: fix for 680789: reprs in arraymoduleRaymond Hettinger2003-04-231-30/+15
* Renamed PyObject_GenericGetIter to PyObject_SelfIterRaymond Hettinger2003-03-171-1/+1
* Created PyObject_GenericGetIter().Raymond Hettinger2003-03-171-8/+1
* SF patch #687598, array.append is sloooowNeal Norwitz2003-02-241-2/+47
* Patch #676837: Cygwin array module patchJason Tishler2003-02-101-1/+2
* SF patch #662433: Fill arraymodule's tp_iter and sq_contains slotsRaymond Hettinger2003-01-071-2/+121