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
*
Issue #15424: Add a __sizeof__ implementation for array objects.
Meador Inge
2012-08-11
1
-0/+15
|
\
|
*
Issue #15424: Add a __sizeof__ implementation for array objects.
Meador Inge
2012-08-11
1
-0/+15
*
|
Close #13072: Restore code before the PEP 393 for the array module
Victor Stinner
2012-08-05
1
-38/+48
*
|
Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in t...
Antoine Pitrou
2012-04-04
1
-1/+1
*
|
Issue #14288: Serialization support for builtin iterators.
Kristján Valur Jónsson
2012-04-03
1
-1/+29
*
|
Merge 3.2
Florent Xicluna
2011-12-09
1
-1/+1
|
\
\
|
|
/
|
*
Fix docstring typo.
Florent Xicluna
2011-12-09
1
-1/+1
*
|
Remove mention of narrow/wide builds and update array doc, add a test.
Ezio Melotti
2011-10-25
1
-4/+1
*
|
Merge 3.2.
Florent Xicluna
2011-10-24
1
-4/+4
|
\
\
|
|
/
|
*
Issue #13255: wrong docstrings in array module.
Florent Xicluna
2011-10-24
1
-4/+4
*
|
Rename _Py_identifier to _Py_IDENTIFIER.
Martin v. Löwis
2011-10-14
1
-4/+4
*
|
Use identifier API for PyObject_GetAttrString.
Martin v. Löwis
2011-10-10
1
-3/+5
*
|
Add API for static strings, primarily good for identifiers.
Martin v. Löwis
2011-10-09
1
-2/+5
*
|
Fix a compiler warning
Victor Stinner
2011-09-29
1
-1/+1
*
|
Fix array.array('u') constructor
Victor Stinner
2011-09-29
1
-6/+12
*
|
array module uses the new Unicode API
Victor Stinner
2011-09-29
1
-33/+30
*
|
array module stores the typecode in a char, instead of Py_UNICODE
Victor Stinner
2011-09-29
1
-19/+16
*
|
Rename new macros to conform to naming rules (function macros have "Py" prefi...
Georg Brandl
2011-09-28
1
-1/+1
*
|
Implement PEP 393.
Martin v. Löwis
2011-09-28
1
-4/+4
*
|
Issue #1621: Fix undefined behaviour from signed overflow in datetime module ...
Mark Dickinson
2011-09-25
1
-1/+1
*
|
Issue #1172711: Add 'long long' support to the array module.
Meador Inge
2011-09-21
1
-1/+78
*
|
Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.
Brian Curtin
2011-08-11
1
-4/+2
*
|
Revert a reversed comparison order introduced in r70695.
Brett Cannon
2011-06-08
1
-1/+1
*
|
Remove some extraneous parentheses and swap the comparison order to
Brett Cannon
2011-06-07
1
-1/+1
*
|
Issue #8914: fix various warnings from the Clang static analyzer v254.
Brett Cannon
2011-02-22
1
-1/+0
|
/
*
Issue #5109: array.array constructor will now use fast code when
Alexander Belopolsky
2011-01-11
1
-5/+15
*
#1569291: speed up array.repeat() by making only O(log n) memcpy() calls; the...
Georg Brandl
2010-12-04
1
-9/+17
*
Merge branches/pep-0384.
Martin v. Löwis
2010-12-03
1
-2/+2
*
Fix compilation warnings seen on Windows.
Amaury Forgeot d'Arc
2010-11-25
1
-7/+7
*
Issue #10359: Use Py_UNICODE for the typecode in array
Victor Stinner
2010-11-09
1
-7/+9
*
Issue #8990: array.fromstring() and array.tostring() get renamed to
Antoine Pitrou
2010-09-01
1
-17/+77
*
Issue #9526: Remove outdated casts to int that were preventing the array mod...
Mark Dickinson
2010-08-06
1
-2/+2
*
Recorded merge of revisions 81029 via svnmerge from
Antoine Pitrou
2010-05-09
1
-1923/+1923
*
Merged revisions 78189 via svnmerge from
Mark Dickinson
2010-02-14
1
-2/+2
*
Merged revisions 77821 via svnmerge from
Mark Dickinson
2010-01-29
1
-2/+3
*
Silence gcc warning about possibly uninitialized variable 'converted_items'
Mark Dickinson
2009-10-26
1
-0/+2
*
Use the proper autoconf macro for checking byte order.
Alexandre Vassalotti
2009-07-17
1
-1/+1
*
Fix omission in a comment.
Alexandre Vassalotti
2009-07-15
1
-1/+1
*
Issue #2389: Implement a portable mechanism for pickling array objects.
Alexandre Vassalotti
2009-07-15
1
-49/+515
*
#6430: remove mention of "w" array typecode.
Georg Brandl
2009-07-11
1
-1/+0
*
Add the fix for issue 4509 to the mapping methods.
Alexandre Vassalotti
2009-07-05
1
-0/+10
*
Fix array.extend and array.__iadd__ to handle the case where an array
Alexandre Vassalotti
2009-07-05
1
-3/+5
*
Issue 4509: Do not modify an array if we know the change would result
Alexandre Vassalotti
2009-07-05
1
-0/+8
*
Py_BuildValue's 'c' code should use byte strings #5666
Benjamin Peterson
2009-04-03
1
-2/+2
*
Issue #5334: array.fromfile() failed to insert values when EOFError was raised.
Hirokazu Yamamoto
2009-03-06
1
-6/+11
*
Merged revisions 69846 via svnmerge from
Mark Dickinson
2009-02-21
1
-6/+6
*
Issue #1717: rename tp_compare to tp_reserved. I'll change the
Mark Dickinson
2009-02-02
1
-2/+2
*
Issue #4583: crash after resizing an array.array which has buffer exports.
Antoine Pitrou
2008-12-18
1
-96/+46
*
Merged revisions 65654 via svnmerge from
Martin v. Löwis
2008-08-13
1
-0/+2
*
Merged revisions 65182 via svnmerge from
Georg Brandl
2008-07-23
1
-1/+4
[next]