COMMITS
/ Modules/arraymodule.c May 24, 2007
G
Fixed array.fromfile(); removed references to PyFileObject in array.tofile().
Guido van Rossum committed
May 20, 2007
W
Remove unused variables.
Walter Dörwald committed
May 19, 2007
W
Add a format specifier %R to PyUnicode_FromFormat(), which embeds
Walter Dörwald committed
May 18, 2007
W
Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror
Walter Dörwald committed
May 10, 2007
G
Fix the array tests. Only a minor change to the C code was required.
Guido van Rossum committed
May 3, 2007
G
Get rid of all #ifdef Py_USING_UNICODE (it is always present now).
Guido van Rossum committed
April 27, 2007
G
Merged revisions 53952-54987 via svnmerge from
Guido van Rossum committed
April 11, 2007
G
Make array().tofile() work with a new I/O object.
Guido van Rossum committed
February 1, 2007
T
Merged revisions 53451-53537 via svnmerge from
Thomas Wouters committed
December 13, 2006
T
Four months of trunk changes (including a few releases...)
Thomas Wouters committed
August 21, 2006
T
Merge current trunk into p3yk. This includes the PyNumber_Index API change,
Thomas Wouters committed
August 17, 2006
G
Completely get rid of PyClass and PyInstance.
Guido van Rossum committed
August 11, 2006
T
Merged revisions 46753-51188 via svnmerge from
Thomas Wouters committed
July 27, 2006
G
Get rid of most of the flags (in tp_flags) that keep track of various
Guido van Rossum committed
May 27, 2006
T
Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.
Thomas Wouters committed
April 21, 2006
T
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters committed
March 7, 2006
G
Checking in the code for PEP 357.
Guido van Rossum committed
H
SF #1444030: Fix several potential defects found by Coverity.
Hye-Shik Chang committed
February 27, 2006
T
Convert array.array.insert to use Py_ssize_t (like the rest already does.)
Thomas Wouters committed
February 17, 2006
G
Bug #1432350: arrayobject should use PyObject_VAR_HEAD
Georg Brandl committed
February 16, 2006
T
Use correct format specifier for Py_ssize_t variable to PyArg_ParseTuple().
Thomas Wouters committed
M
Use Py_ssize_t for counts and sizes.
Martin v. Löwis committed
February 15, 2006
M
Merge ssize_t branch.
Martin v. Löwis committed
January 19, 2006
N
Check return result from Py_InitModule*(). This API can fail.
Neal Norwitz committed
August 26, 2005
G
Disallow keyword arguments for type constructors that don't use them.
Georg Brandl committed
December 16, 2004
R
SF #1085304: Make array.array pickle-able
Raymond Hettinger committed
August 29, 2004
R
SF feature request #992967: array.array objects should support sequences.
Raymond Hettinger committed
May 31, 2004
R
Add weakref support to array.array and file objects.
Raymond Hettinger committed
March 14, 2004
R
SF feature request #686323: Minor array module enhancements
Raymond Hettinger committed
R
Update the array overallocation scheme to match the approach used for
Raymond Hettinger committed
March 13, 2004
R
SF bug #910986: copy.copy fails for array.array
Raymond Hettinger committed
October 12, 2003
R
Simplify and speedup uses of Py_BuildValue():
Raymond Hettinger committed
August 5, 2003
R
SF bug #782369: Massive memory leak in array module
Raymond Hettinger committed
May 23, 2003
W
All calls to getarrayitem() (which is static) are done either in loops
Walter Dörwald committed
May 18, 2003
W
Fix array.array.insert(), so that it treats negative indices as
Walter Dörwald committed
April 24, 2003
R
SF 686323: Minor array module enhancements
Raymond Hettinger committed
April 23, 2003
R
SF Patch 685051: fix for 680789: reprs in arraymodule
Raymond Hettinger committed
March 17, 2003
R
Renamed PyObject_GenericGetIter to PyObject_SelfIter
Raymond Hettinger committed
R
Created PyObject_GenericGetIter().
Raymond Hettinger committed
February 24, 2003
N
SF patch #687598, array.append is sloooow
Neal Norwitz committed
February 10, 2003
J
Patch #676837: Cygwin array module patch
Jason Tishler committed
January 7, 2003
R
SF patch #662433: Fill arraymodule's tp_iter and sq_contains slots
Raymond Hettinger committed
January 6, 2003
J
Patch #661760: Cygwin auto-import module patch
Jason Tishler committed
January 3, 2003
R
SF patch 660559: Use METH_O and METH_NOARGS where possible
Raymond Hettinger committed
August 2, 2002
M
Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype
Mark Hammond committed
July 17, 2002
T
Removed more stray instances of statichere, but left _sre.c alone.
Tim Peters committed
J
staticforward bites the dust.
Jeremy Hylton committed
June 19, 2002
M
Fix the bug described in
Michael W. Hudson committed
June 13, 2002
M
Patch #568124: Add doc string macros.
Martin v. Löwis committed