summaryrefslogtreecommitdiffstats
path: root/Modules/arraymodule.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Indicate delayed initialization of slots. Suggested by tim.one.Martin v. Löwis2002-05-021-3/+5
* Patch #551009: Initialize array type dynamically.Martin v. Löwis2002-05-021-3/+6
* PyObject_Del can now be used as a function designator.Neil Schemenauer2002-04-121-1/+1
* Use the PyModule_*() API instead of manipulating the module dictionaryFred Drake2002-04-011-4/+6
* Remove tp_print.Martin v. Löwis2002-03-041-34/+1
* Patch 520694: arraymodule.c improvements:Martin v. Löwis2002-03-011-107/+316
* Patch supplied by Burton Radons for his own SF bug #487390: ModifyingGuido van Rossum2001-12-081-1/+1
* sprintf -> PyOS_snprintf in some "obviously safe" cases.Tim Peters2001-11-281-3/+4
* Fix buffer_info() docstring to match reality. See SF bug #444842.Guido van Rossum2001-07-271-1/+3
* Make it possible to find the use of tp_as_buffer here with a global search.Tim Peters2001-06-051-1/+1
* Correct one-line typo, reported by yole @ SF, bug 130077.Guido van Rossum2001-01-251-1/+1
* The array type was missing the Py_TPFLAGS_DEFAULT initializer for theGuido van Rossum2001-01-241-1/+1
* Same treatment as listobject.c:Guido van Rossum2001-01-181-67/+156
* Fix for SF bug 117402, crashes on str(array) and repr(array). This was anTim Peters2000-11-101-3/+5
* Rationalize use of limits.h, moving the inclusion to Python.h.Fred Drake2000-09-261-3/+0
* arraymodule: Fix SF bug 113960.Tim Peters2000-09-161-18/+23
* General cleanup in preparation for a bugfix: removed unused code, uselessTim Peters2000-09-101-65/+27
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* Peter Schneider-Kamp <nowonder@nowonder.de>:Fred Drake2000-08-311-3/+1
* Use safer comparisons (only matters when sizeof(int) != sizeof(size_t)). freadTrent Mick2000-08-121-2/+2
* Removed decl of unreferenced vrbl.Tim Peters2000-08-011-1/+0
* replaced PyArgs_Parse by PyArgs_ParseTuplePeter Schneider-Kamp2000-07-311-34/+39
* added count, extend, index, pop and remove to arraymodulePeter Schneider-Kamp2000-07-311-72/+168
* Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',Thomas Wouters2000-07-211-1/+1
* ANSI-fication (got lost in the deep seas of source forge <wink>)Peter Schneider-Kamp2000-07-131-195/+60
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-091-8/+8
* Jack Jansen, Mac patch:Guido van Rossum2000-07-011-0/+3
* In b_setitem(), instead of the platform dependent CHAR_MIN andGuido van Rossum2000-07-011-2/+2
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Trent Mick: use size_t instead of int where appropriate (inGuido van Rossum2000-06-281-2/+2
* Trent Mick <trentm@activestate.com>:Fred Drake2000-06-281-10/+95
* Michael Hudson <mwh21@cam.ac.uk>:Fred Drake2000-06-011-3/+8
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-6/+3