index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
arraymodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix docstring typo.
Florent Xicluna
2011-12-09
1
-1/+1
*
Reverted r87944 - issue #5109 should not have been backported
Alexander Belopolsky
2011-01-11
1
-16/+5
*
Merged revisions 87942 via svnmerge from
Alexander Belopolsky
2011-01-11
1
-5/+16
*
Merged revisions 83751-83752 via svnmerge from
Mark Dickinson
2010-08-06
1
-2/+2
*
Merged revisions 83030 via svnmerge from
Antoine Pitrou
2010-07-21
1
-2/+8
*
Untabify C files. Will watch buildbots.
Antoine Pitrou
2010-05-09
1
-1515/+1515
*
Silence more 'comparison between signed and unsigned' warnings.
Mark Dickinson
2010-02-14
1
-2/+2
*
Issue #7788: Fix a crash produced by deleting a list slice with huge
Mark Dickinson
2010-01-29
1
-2/+3
*
Issue #2389: Pickle array objects using a list representation for portability
Alexandre Vassalotti
2009-07-15
1
-35/+33
*
Issue #5341: Fix a variety of spelling errors.
Mark Dickinson
2009-02-21
1
-6/+6
*
Issue #2620: Overflow checking when allocating or reallocating memory
Gregory P. Smith
2008-07-22
1
-1/+4
*
Make more symbols static.
Martin v. Löwis
2008-06-13
1
-1/+1
*
Fix some memory dealloc problems when exceptions occur.
Neal Norwitz
2008-06-13
1
-8/+7
*
Merge in release25-maint r60793:
Gregory P. Smith
2008-06-11
1
-1/+37
*
This reverts r63675 based on the discussion in this thread:
Gregory P. Smith
2008-06-09
1
-9/+9
*
Renamed PyString to PyBytes
Christian Heimes
2008-05-26
1
-9/+9
*
A little reformating of Py3k warnings
Benjamin Peterson
2008-04-27
1
-2/+2
*
Use PyErr_WarnPy3k throughout
Benjamin Peterson
2008-04-27
1
-8/+4
*
#2359: add Py3k warning for array.read/array.write.
Georg Brandl
2008-03-25
1
-2/+26
*
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...
Christian Heimes
2007-12-19
1
-120/+120
*
Improve extended slicing support in builtin types and classes. Specifically:
Thomas Wouters
2007-08-28
1
-92/+136
*
PEP 3123: Provide forward compatibility with Python 3.0, while keeping
Martin v. Löwis
2007-07-21
1
-120/+118
*
Array module's buffer interface can now handle empty arrays.
Raymond Hettinger
2007-04-02
1
-0/+6
*
SF #1693079: Cannot save empty array in shelve
Raymond Hettinger
2007-04-02
1
-6/+13
*
Bug #1486663: don't reject keyword arguments for subclasses of builtin
Georg Brandl
2007-01-21
1
-1/+1
*
Fix SF bug #1545837: array.array borks on deepcopy.
Thomas Wouters
2006-08-24
1
-1/+1
*
Patch #1538606, Patch to fix __index__() clipping.
Neal Norwitz
2006-08-12
1
-8/+4
*
Klocwork made another run and found a bunch more problems.
Neal Norwitz
2006-08-12
1
-0/+4
*
Patch #1495999: Part two of Windows CE changes.
Martin v. Löwis
2006-06-10
1
-2/+2
*
Buffer objects would return the read or write buffer for a wrapped object when
Brett Cannon
2006-06-08
1
-0/+1
*
Support for buffer protocol for socket and struct.
Martin Blais
2006-05-26
1
-3/+3
*
C++ compiler cleanup: a cast here, a cast there... still does not compile und...
Skip Montanaro
2006-04-18
1
-3/+4
*
Use Py_VISIT in all tp_traverse methods, instead of traversing manually or
Thomas Wouters
2006-04-15
1
-2/+1
*
Whitespace: break long line
Neal Norwitz
2006-04-03
1
-1/+2
*
Checking in the code for PEP 357.
Guido van Rossum
2006-03-07
1
-18/+11
*
SF #1444030: Fix several potential defects found by Coverity.
Hye-Shik Chang
2006-03-07
1
-4/+7
*
Convert array.array.insert to use Py_ssize_t (like the rest already does.)
Thomas Wouters
2006-02-27
1
-2/+2
*
Bug #1432350: arrayobject should use PyObject_VAR_HEAD
Georg Brandl
2006-02-17
1
-2/+1
*
Use correct format specifier for Py_ssize_t variable to PyArg_ParseTuple().
Thomas Wouters
2006-02-16
1
-1/+1
*
Use Py_ssize_t for counts and sizes.
Martin v. Löwis
2006-02-16
1
-16/+13
*
Merge ssize_t branch.
Martin v. Löwis
2006-02-15
1
-94/+99
*
Check return result from Py_InitModule*(). This API can fail.
Neal Norwitz
2006-01-19
1
-0/+2
*
Disallow keyword arguments for type constructors that don't use them.
Georg Brandl
2005-08-26
1
-12/+3
*
SF #1085304: Make array.array pickle-able
Raymond Hettinger
2004-12-16
1
-0/+25
*
SF feature request #992967: array.array objects should support sequences.
Raymond Hettinger
2004-08-29
1
-6/+20
*
Add weakref support to array.array and file objects.
Raymond Hettinger
2004-05-31
1
-2/+7
*
SF feature request #686323: Minor array module enhancements
Raymond Hettinger
2004-03-14
1
-9/+34
*
Update the array overallocation scheme to match the approach used for
Raymond Hettinger
2004-03-14
1
-61/+76
*
SF bug #910986: copy.copy fails for array.array
Raymond Hettinger
2004-03-13
1
-0/+15
*
Simplify and speedup uses of Py_BuildValue():
Raymond Hettinger
2003-10-12
1
-1/+1
[next]