| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Merged revisions 64114 via svnmerge from | Amaury Forgeot d'Arc | 2008-06-18 | 1 | -2/+33 |
|
|
* | Merged revisions 64119,64147,64150,64165,64219-64221,64229-64230,64233,64235,... | Amaury Forgeot d'Arc | 2008-06-17 | 1 | -6/+10 |
|
|
* | Merged revisions 64226 via svnmerge from | Martin v. Löwis | 2008-06-13 | 1 | -1/+1 |
|
|
* | Implement PEP 3121: new module initialization and finalization API. | Martin v. Löwis | 2008-06-11 | 1 | -5/+21 |
|
|
* | Remove locking from buffer protocol as-per discussion. | Travis E. Oliphant | 2008-06-06 | 1 | -5/+0 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -6/+6 |
|
|
* | Renamed PyBytes to PyByteArray | Christian Heimes | 2008-05-26 | 1 | -2/+2 |
|
|
* | Remove the deprecated array.read/write methods. | Georg Brandl | 2008-02-01 | 1 | -9/+2 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -115/+115 |
|
|
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -10/+10 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -6/+10 |
|
|
* | Fix typo: formats -> format. (Only mattered in wide unicode builds.) | Guido van Rossum | 2007-10-14 | 1 | -1/+1 |
|
|
* | Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer i... | Travis E. Oliphant | 2007-10-13 | 1 | -6/+6 |
|
|
* | Fix typo in arraymodule.c (?) -- it's PyBUF_LOCK, not PyBUF_LOCKDATA. | Guido van Rossum | 2007-10-13 | 1 | -1/+1 |
|
|
* | Fix Issue 1268 with the array module by backing-out the 'w' addition. All bu... | Travis E. Oliphant | 2007-10-12 | 1 | -18/+36 |
|
|
* | Change PyBuffer to Py_buffer to be consistent with other non-object structure... | Travis E. Oliphant | 2007-09-23 | 1 | -2/+2 |
|
|
* | Remove the simple slicing API. All slicing is now done with slice objects. | Thomas Wouters | 2007-08-30 | 1 | -2/+2 |
|
|
* | Merge the trunk changes in. Breaks socket.ssl for now. | Thomas Wouters | 2007-08-28 | 1 | -92/+136 |
|
|
* | Use unicode and remove support for some uses of str8. | Neal Norwitz | 2007-08-26 | 1 | -3/+2 |
|
|
* | Fix memory leak in arraymodule.c and respond to a few comments by nnorwitz. | Travis E. Oliphant | 2007-08-20 | 1 | -20/+16 |
|
|
* | Code review of the new buffer protocol. Mostly add questions that should | Neal Norwitz | 2007-08-19 | 1 | -2/+2 |
|
|
* | Merged in py3k-buffer branch to main line. All objects now use the buffer pr... | Travis E. Oliphant | 2007-08-18 | 1 | -42/+75 |
|
|
* | Fix reference leak. | Martin v. Löwis | 2007-08-11 | 1 | -0/+1 |
|
|
* | Fix merge breakage. | Martin v. Löwis | 2007-07-21 | 1 | -2/+2 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -114/+112 |
|
|
* | Change Py_BuildValue to generate Unicode objects for | Martin v. Löwis | 2007-07-18 | 1 | -1/+1 |
|
|
* | Creating an array with a bytes object as initializer | Guido van Rossum | 2007-07-03 | 1 | -1/+3 |
|
|
* | Revert r56044 (which changed the %c format specifier to accept a | Walter Dörwald | 2007-07-01 | 1 | -1/+1 |
|
|
* | Fix a failure that was only apparent on big-endian machines: | Guido van Rossum | 2007-06-30 | 1 | -2/+1 |
|
|
* | Make array.typecode a unicode string. | Walter Dörwald | 2007-06-22 | 1 | -2/+2 |
|
|
* | "Fix" the array module test -- by ripping out the 'c' typecode. | Guido van Rossum | 2007-06-18 | 1 | -27/+4 |
|
|
* | Fixed array.fromfile(); removed references to PyFileObject in array.tofile(). | Guido van Rossum | 2007-05-24 | 1 | -71/+58 |
|
|
* | Remove unused variables. | Walter Dörwald | 2007-05-20 | 1 | -1/+1 |
|
|
* | Add a format specifier %R to PyUnicode_FromFormat(), which embeds | Walter Dörwald | 2007-05-19 | 1 | -10/+4 |
|
|
* | Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror | Walter Dörwald | 2007-05-18 | 1 | -4/+4 |
|
|