| Commit message (Expand) | Author | Age | Files | Lines |
* | Simplify and speedup uses of Py_BuildValue(): | Raymond Hettinger | 2003-10-12 | 1 | -1/+1 |
|
|
* | SF bug #782369: Massive memory leak in array module | Raymond Hettinger | 2003-08-05 | 1 | -2/+7 |
|
|
* | All calls to getarrayitem() (which is static) are done either in loops | Walter Dörwald | 2003-05-23 | 1 | -4/+1 |
|
|
* | Fix array.array.insert(), so that it treats negative indices as | Walter Dörwald | 2003-05-18 | 1 | -2/+5 |
|
|
* | SF 686323: Minor array module enhancements | Raymond Hettinger | 2003-04-24 | 1 | -4/+6 |
|
|
* | SF Patch 685051: fix for 680789: reprs in arraymodule | Raymond Hettinger | 2003-04-23 | 1 | -30/+15 |
|
|
* | Renamed PyObject_GenericGetIter to PyObject_SelfIter | Raymond Hettinger | 2003-03-17 | 1 | -1/+1 |
|
|
* | Created PyObject_GenericGetIter(). | Raymond Hettinger | 2003-03-17 | 1 | -8/+1 |
|
|
* | SF patch #687598, array.append is sloooow | Neal Norwitz | 2003-02-24 | 1 | -2/+47 |
|
|
* | Patch #676837: Cygwin array module patch | Jason Tishler | 2003-02-10 | 1 | -1/+2 |
|
|
* | SF patch #662433: Fill arraymodule's tp_iter and sq_contains slots | Raymond Hettinger | 2003-01-07 | 1 | -2/+121 |
|
|
* | Patch #661760: Cygwin auto-import module patch | Jason Tishler | 2003-01-06 | 1 | -8/+3 |
|
|
* | SF patch 660559: Use METH_O and METH_NOARGS where possible | Raymond Hettinger | 2003-01-03 | 1 | -67/+32 |
|
|
* | Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype | Mark Hammond | 2002-08-02 | 1 | -1/+1 |
|
|
* | Fix for | Michael W. Hudson | 2002-07-29 | 1 | -6/+7 |
|
|
* | Removed more stray instances of statichere, but left _sre.c alone. | Tim Peters | 2002-07-17 | 1 | -1/+1 |
|
|
* | staticforward bites the dust. | Jeremy Hylton | 2002-07-17 | 1 | -1/+1 |
|
|
* | Fix the bug described in | Michael W. Hudson | 2002-06-19 | 1 | -1/+174 |
|
|
* | Patch #568124: Add doc string macros. | Martin v. Löwis | 2002-06-13 | 1 | -40/+40 |
|
|
* | array_tounicode isn't defined in --disable-unicode builds... | Michael W. Hudson | 2002-05-13 | 1 | -0/+4 |
|
|
* | Indicate delayed initialization of slots. Suggested by tim.one. | Martin v. Löwis | 2002-05-02 | 1 | -3/+5 |
|
|
* | Patch #551009: Initialize array type dynamically. | Martin v. Löwis | 2002-05-02 | 1 | -3/+6 |
|
|
* | PyObject_Del can now be used as a function designator. | Neil Schemenauer | 2002-04-12 | 1 | -1/+1 |
|
|
* | Use the PyModule_*() API instead of manipulating the module dictionary | Fred Drake | 2002-04-01 | 1 | -4/+6 |
|
|
* | Remove tp_print. | Martin v. Löwis | 2002-03-04 | 1 | -34/+1 |
|
|
* | Patch 520694: arraymodule.c improvements: | Martin v. Löwis | 2002-03-01 | 1 | -107/+316 |
|
|
* | Patch supplied by Burton Radons for his own SF bug #487390: Modifying | Guido van Rossum | 2001-12-08 | 1 | -1/+1 |
|
|
* | sprintf -> PyOS_snprintf in some "obviously safe" cases. | Tim Peters | 2001-11-28 | 1 | -3/+4 |
|
|
* | Fix buffer_info() docstring to match reality. See SF bug #444842. | Guido van Rossum | 2001-07-27 | 1 | -1/+3 |
|
|
* | Make it possible to find the use of tp_as_buffer here with a global search. | Tim Peters | 2001-06-05 | 1 | -1/+1 |
|
|
* | Correct one-line typo, reported by yole @ SF, bug 130077. | Guido van Rossum | 2001-01-25 | 1 | -1/+1 |
|
|
* | The array type was missing the Py_TPFLAGS_DEFAULT initializer for the | Guido van Rossum | 2001-01-24 | 1 | -1/+1 |
|
|
* | Same treatment as listobject.c: | Guido van Rossum | 2001-01-18 | 1 | -67/+156 |
|
|
* | Fix for SF bug 117402, crashes on str(array) and repr(array). This was an | Tim Peters | 2000-11-10 | 1 | -3/+5 |
|
|
* | Rationalize use of limits.h, moving the inclusion to Python.h. | Fred Drake | 2000-09-26 | 1 | -3/+0 |
|
|
* | arraymodule: Fix SF bug 113960. | Tim Peters | 2000-09-16 | 1 | -18/+23 |
|
|
* | General cleanup in preparation for a bugfix: removed unused code, useless | Tim Peters | 2000-09-10 | 1 | -65/+27 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
|
|
* | Peter Schneider-Kamp <nowonder@nowonder.de>: | Fred Drake | 2000-08-31 | 1 | -3/+1 |
|
|
* | Use safer comparisons (only matters when sizeof(int) != sizeof(size_t)). fread | Trent Mick | 2000-08-12 | 1 | -2/+2 |
|
|
* | Removed decl of unreferenced vrbl. | Tim Peters | 2000-08-01 | 1 | -1/+0 |
|
|
* | replaced PyArgs_Parse by PyArgs_ParseTuple | Peter Schneider-Kamp | 2000-07-31 | 1 | -34/+39 |
|
|
* | added count, extend, index, pop and remove to arraymodule | Peter Schneider-Kamp | 2000-07-31 | 1 | -72/+168 |
|
|
* | Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', | Thomas Wouters | 2000-07-21 | 1 | -1/+1 |
|
|
* | ANSI-fication (got lost in the deep seas of source forge <wink>) | Peter Schneider-Kamp | 2000-07-13 | 1 | -195/+60 |
|
|
* | Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. | Tim Peters | 2000-07-09 | 1 | -8/+8 |
|
|
* | Jack Jansen, Mac patch: | Guido van Rossum | 2000-07-01 | 1 | -0/+3 |
|
|
* | In b_setitem(), instead of the platform dependent CHAR_MIN and | Guido van Rossum | 2000-07-01 | 1 | -2/+2 |
|
|
* | Change copyright notice - 2nd try. | Guido van Rossum | 2000-06-30 | 1 | -6/+0 |
|
|
* | Change copyright notice. | Guido van Rossum | 2000-06-30 | 1 | -22/+7 |
|
|