summaryrefslogtreecommitdiffstats
path: root/Modules/arraymodule.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 83751-83752 via svnmerge fromMark Dickinson2010-08-061-2/+2
* Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-091-1518/+1518
* Merged revisions 78192 via svnmerge fromMark Dickinson2010-02-141-2/+2
* Merged revisions 77823 via svnmerge fromMark Dickinson2010-01-291-2/+3
* Merged revisions 73862,73872 via svnmerge fromGeorg Brandl2009-08-131-0/+10
* Merged revisions 73833,73838,73850-73852,73856-73857 via svnmerge fromGeorg Brandl2009-08-131-3/+13
* Merged revisions 73941-73943,74076,74094,74186,74211-74214,74247,74254,74262,...Georg Brandl2009-08-131-1/+0
* Py_BuildValue's 'c' code should use byte strings #5666Benjamin Peterson2009-04-031-2/+2
* Issue #5334: array.fromfile() failed to insert values when EOFError was raised.Hirokazu Yamamoto2009-03-061-6/+11
* Merged revisions 69846 via svnmerge fromMark Dickinson2009-02-211-6/+6
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-2/+2
* Issue #4583: crash after resizing an array.array which has buffer exports.Antoine Pitrou2008-12-181-96/+46
* Merged revisions 65654 via svnmerge fromMartin v. Löwis2008-08-131-0/+2
* Merged revisions 65182 via svnmerge fromGeorg Brandl2008-07-231-1/+4
* Merged revisions 64114 via svnmerge fromAmaury Forgeot d'Arc2008-06-181-2/+33
* Merged revisions 64119,64147,64150,64165,64219-64221,64229-64230,64233,64235,...Amaury Forgeot d'Arc2008-06-171-6/+10
* Merged revisions 64226 via svnmerge fromMartin v. Löwis2008-06-131-1/+1
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-5/+21
* Remove locking from buffer protocol as-per discussion.Travis E. Oliphant2008-06-061-5/+0
* Renamed PyString to PyBytesChristian Heimes2008-05-261-6/+6
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-261-2/+2
* Remove the deprecated array.read/write methods.Georg Brandl2008-02-011-9/+2
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-115/+115
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-10/+10
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-6/+10
* Fix typo: formats -> format. (Only mattered in wide unicode builds.)Guido van Rossum2007-10-141-1/+1
* Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer i...Travis E. Oliphant2007-10-131-6/+6
* Fix typo in arraymodule.c (?) -- it's PyBUF_LOCK, not PyBUF_LOCKDATA.Guido van Rossum2007-10-131-1/+1
* Fix Issue 1268 with the array module by backing-out the 'w' addition. All bu...Travis E. Oliphant2007-10-121-18/+36
* Change PyBuffer to Py_buffer to be consistent with other non-object structure...Travis E. Oliphant2007-09-231-2/+2
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-301-2/+2
* Merge the trunk changes in. Breaks socket.ssl for now.Thomas Wouters2007-08-281-92/+136
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-3/+2
* Fix memory leak in arraymodule.c and respond to a few comments by nnorwitz.Travis E. Oliphant2007-08-201-20/+16
* Code review of the new buffer protocol. Mostly add questions that shouldNeal Norwitz2007-08-191-2/+2
* Merged in py3k-buffer branch to main line. All objects now use the buffer pr...Travis E. Oliphant2007-08-181-42/+75
* Fix reference leak.Martin v. Löwis2007-08-111-0/+1
* Fix merge breakage.Martin v. Löwis2007-07-211-2/+2
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-114/+112
* Change Py_BuildValue to generate Unicode objects forMartin v. Löwis2007-07-181-1/+1
* Creating an array with a bytes object as initializerGuido van Rossum2007-07-031-1/+3
* Revert r56044 (which changed the %c format specifier to accept aWalter Dörwald2007-07-011-1/+1
* Fix a failure that was only apparent on big-endian machines:Guido van Rossum2007-06-301-2/+1
* Make array.typecode a unicode string.Walter Dörwald2007-06-221-2/+2
* "Fix" the array module test -- by ripping out the 'c' typecode.Guido van Rossum2007-06-181-27/+4
* Fixed array.fromfile(); removed references to PyFileObject in array.tofile().Guido van Rossum2007-05-241-71/+58
* Remove unused variables.Walter Dörwald2007-05-201-1/+1
* Add a format specifier %R to PyUnicode_FromFormat(), which embedsWalter Dörwald2007-05-191-10/+4
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-4/+4
* Fix the array tests. Only a minor change to the C code was required.Guido van Rossum2007-05-101-1/+3