summaryrefslogtreecommitdiffstats
path: root/Modules/arraymodule.c
Commit message (Expand)AuthorAgeFilesLines
* Remove unused variables.Walter Dörwald2007-05-201-1/+1
* Add a format specifier %R to PyUnicode_FromFormat(), which embedsWalter Dörwald2007-05-191-10/+4
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-4/+4
* Fix the array tests. Only a minor change to the C code was required.Guido van Rossum2007-05-101-1/+3
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-14/+0
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-6/+19
* Make array().tofile() work with a new I/O object.Guido van Rossum2007-04-111-5/+29
* Merged revisions 53451-53537 via svnmerge fromThomas Wouters2007-02-011-1/+1
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-1/+1
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-6/+8
* Completely get rid of PyClass and PyInstance.Guido van Rossum2006-08-171-1/+2
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-2/+3
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-5/+3
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-3/+3
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-6/+7
* 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
* Patch #661760: Cygwin auto-import module patchJason Tishler2003-01-061-8/+3
* SF patch 660559: Use METH_O and METH_NOARGS where possibleRaymond Hettinger2003-01-031-67/+32
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* Fix forMichael W. Hudson2002-07-291-6/+7
* Removed more stray instances of statichere, but left _sre.c alone.Tim Peters2002-07-171-1/+1
* staticforward bites the dust.Jeremy Hylton2002-07-171-1/+1
* Fix the bug described inMichael W. Hudson2002-06-191-1/+174
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-40/+40
* array_tounicode isn't defined in --disable-unicode builds...Michael W. Hudson2002-05-131-0/+4