- 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 13 years ago
- 90bf5f1 Remove mention of narrow/wide builds and update array doc, add a test. by Ezio Melotti · 13 years ago
- 8dba4e0 array module uses the new Unicode API by Victor Stinner · 13 years ago
- 1c9f0c9 Issue #1172711: Add 'long long' support to the array module. by Meador Inge · 13 years ago
- ef4a03f Issue #5109: array.array constructor will now use fast code when by Alexander Belopolsky · 14 years ago
- 7a6a009 test_array: fix the DeprecationWarning('object.__init__() takes no parameters') by Victor Stinner · 14 years ago
- cf03ac0 #10668: fix wrong call of __init__. by Georg Brandl · 14 years ago
- c29cc6a #1569291: speed up array.repeat() by making only O(log n) memcpy() calls; the code follows unicode_repeat. by Georg Brandl · 14 years ago
- b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
- 1ce3eb5 Issue #8990: array.fromstring() and array.tostring() get renamed to by Antoine Pitrou · 14 years ago
- 8cb6dbf Issue #5395: check that array.fromfile() re-raises an IOError instead of replacing it by Antoine Pitrou · 14 years ago
- 90f5ba5 convert shebang lines: python -> python3 by Benjamin Peterson · 15 years ago
- bc09964 Merged revisions 77821 via svnmerge from by Mark Dickinson · 15 years ago
- e961593 Merged revisions 77727 via svnmerge from by Ezio Melotti · 15 years ago
- 1768343 Merged revisions 74477 via svnmerge from by Frank Wierzbicki · 15 years ago
- 0027d4b Don't check 64-bit test cases on 32-bit machine. by Alexandre Vassalotti · 15 years ago
- ad07715 Issue #2389: Implement a portable mechanism for pickling array objects. by Alexandre Vassalotti · 15 years ago
- 4713725 Add the fix for issue 4509 to the mapping methods. by Alexandre Vassalotti · 15 years ago
- e503cf9 Fix array.extend and array.__iadd__ to handle the case where an array by Alexandre Vassalotti · 15 years ago
- b78637a Add more test cases to BaseTest.test_memoryview_no_resize. by Alexandre Vassalotti · 15 years ago
- 7e4f321 Issue 4509: Do not modify an array if we know the change would result by Alexandre Vassalotti · 15 years ago
- c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
- 54d0df6 Issue #5334: array.fromfile() failed to insert values when EOFError was raised. by Hirokazu Yamamoto · 16 years ago
- 3471b1c Resurrect two buffer tests, converting irepeat() to imul(). Undoes part of r68962. by Raymond Hettinger · 16 years ago
- 89e1296 As discussed on python-dev, remove several operator functions by Raymond Hettinger · 16 years ago
- 801f9d3 Issue #4740: Use HIGHEST_PROTOCOL in pickle test. This enables test for protocol 3 by Hirokazu Yamamoto · 16 years ago
- 3ad3a0d Issue #4583: crash after resizing an array.array which has buffer exports. by Antoine Pitrou · 16 years ago
- bcd8ac3 Merged revisions 66703,66708 via svnmerge from by Benjamin Peterson · 16 years ago
- 9c74b14 Merged revisions 64114 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
- 559e5d7 #2630: Implement PEP 3138. by Georg Brandl · 16 years ago
- a26f8ca Revert r63934 -- it was mixing two patches. by Georg Brandl · 16 years ago
- f954c4b Remove meaning of -ttt, but still accept -t option on cmdline for compatibility. by Georg Brandl · 16 years ago
- ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
- 33fe809 Merged revisions 62260-62261,62266,62271,62277-62279,62289-62290,62293-62298,62302-62306,62308,62311,62313-62315,62319-62321 via svnmerge from by Christian Heimes · 17 years ago
- bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
- d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
- ed03b41 Merge the trunk changes in. Breaks socket.ssl for now. by Thomas Wouters · 17 years ago
- 6b826ab Creating an array with a bytes object as initializer by Guido van Rossum · 17 years ago
- 31f72d7 "Fix" the array module test -- by ripping out the 'c' typecode. by Guido van Rossum · 17 years ago
- cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
- 2c94aa5 Fixed array.fromfile(); removed references to PyFileObject in array.tofile(). by Guido van Rossum · 17 years ago
- 1f5947b Remove have_unicode checks and merge those tests into the by Walter Dörwald · 17 years ago
- 1f05a3b Fix the array tests. Only a minor change to the C code was required. by Guido van Rossum · 18 years ago
- 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 18 years ago
- aa97f04 Fix various spots where int/long and str/unicode unification by Walter Dörwald · 18 years ago
- ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 18 years ago
- d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 18 years ago
- b5ddcfd Make array().tofile() work with a new I/O object. by Guido van Rossum · 18 years ago
- cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 18 years ago
- be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
- b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 18 years ago
- e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
- 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
- bf12cdb Quite a few fixes to make the library and test suite more robust when by Guido van Rossum · 18 years ago
- 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 19 years ago
- bd2835c as is a keyword now :-) by Neal Norwitz · 19 years ago
- 1083c24 Add a slice test with high < low. by Walter Dörwald · 20 years ago
- b0900e6 SF #1085304: Make array.array pickle-able by Raymond Hettinger · 20 years ago
- 6ab78cd SF feature request #992967: array.array objects should support sequences. by Raymond Hettinger · 20 years ago
- cb87bc8 Add weakref support to array.array and file objects. by Raymond Hettinger · 20 years ago
- 49f9bd1 SF feature request #686323: Minor array module enhancements by Raymond Hettinger · 21 years ago
- 3aa82c0 SF bug #910986: copy.copy fails for array.array by Raymond Hettinger · 21 years ago
- ed9bf12 protect against test problems with Jython by Skip Montanaro · 21 years ago
- d5cf0b8 added test for bug 782369 by Skip Montanaro · 21 years ago
- 35c6cd0 Walter's last checkin also needs to work on doubles. by Neal Norwitz · 21 years ago
- cf99b0a test_byteswap() fails on alphas, because treating the byte swapped bit by Walter Dörwald · 21 years ago
- 9e46abe Fix array.array.insert(), so that it treats negative indices as by Walter Dörwald · 21 years ago
- ba39d9c Add another error case to the insert test. by Walter Dörwald · 21 years ago
- 7fd9424 Port test_array and test_winsound to PyUnit. Enhance tests for array by Walter Dörwald · 21 years ago
- 625812f SF patch #662433: Fill arraymodule's tp_iter and sq_contains slots by Raymond Hettinger · 22 years ago
- 56796f6 Fix for by Michael W. Hudson · 22 years ago
- 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
- 9c14bad Fix the bug described in by Michael W. Hudson · 22 years ago
- 8bf46e4 This is patch by Michael W. Hudson · 22 years ago
- 9986633 Patch 520694: arraymodule.c improvements: by Martin v. Löwis · 23 years ago
- f785042 a bold attempt to fix things broken by MAL's verify patch: import by Fredrik Lundh · 24 years ago
- 3661908 This patch removes all uses of "assert" in the regression test suite by Marc-André Lemburg · 24 years ago
- cc78e47 Verify that str(a) and repr(a) don't blow up (part of SF patch 102068). by Tim Peters · 24 years ago
- 004d5e6 Make reindent.py happy (convert everything to 4-space indents!). by Fred Drake · 24 years ago
- 077a11d arraymodule: Fix SF bug 113960. by Tim Peters · 24 years ago
- 5a65c2d added count, extend, index, pop and remove to arraymodule by Peter Schneider-Kamp · 24 years ago
- 7833447 Trent Mick <trentm@activestate.com>: by Fred Drake · 24 years ago
- 7f1d3aa Add tests for array self-assigns. (This one has no relevance to JPython.) by Guido van Rossum · 26 years ago
- 41360a4 Mass check-in after untabifying all files that need it. by Guido van Rossum · 27 years ago
- d2c0ec7 Use `...` around binary strings. by Guido van Rossum · 27 years ago
- c9f8f14 Use TESTFN instead of /etc/passwd and /dev/null as test files. by Guido van Rossum · 28 years ago
- fab8ab8 Many scripts, but small changes. Update the way the scripts obtain the by Roger E. Masse · 28 years ago
- 8db1b07 module to test the arraymodule created and added to testall.py by Roger E. Masse · 28 years ago