| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Issue 19572: More silently skipped tests explicitly skipped. | Zachary Ware | 2013-12-08 | 1 | -1/+1 |
| |\ | |||||
| | * | Issue 19572: More silently skipped tests explicitly skipped. | Zachary Ware | 2013-12-08 | 1 | -1/+1 |
| | | | |||||
| * | | Issue #3693: Fix array obscure error message when given a str. | Alexandre Vassalotti | 2013-11-30 | 1 | -0/+12 |
| | | | |||||
| * | | Issue #19604: Use specific asserts in array tests. | Serhiy Storchaka | 2013-11-16 | 1 | -34/+34 |
| |\ \ | |/ | |||||
| | * | Issue #19604: Use specific asserts in array tests. | Serhiy Storchaka | 2013-11-16 | 1 | -34/+34 |
| | | | |||||
| | * | Issue #18702: All skipped tests now reported as skipped. | Serhiy Storchaka | 2013-11-03 | 1 | -8/+9 |
| | | | |||||
| * | | Issue #18702: All skipped tests now reported as skipped. | Serhiy Storchaka | 2013-11-03 | 1 | -8/+9 |
| | | | |||||
| * | | (Merge 3.3) Issue #17223: the test is specific to 32-bit wchar_t type | Victor Stinner | 2013-03-08 | 1 | -11/+3 |
| |\ \ | |/ | | | | | Skip the test on Windows. | ||||
| | * | Issue #17223: the test is specific to 32-bit wchar_t type | Victor Stinner | 2013-03-08 | 1 | -11/+3 |
| | | | | | | | | | Skip the test on Windows. | ||||
| * | | (Merge 3.3) Issue #17223: Fix test_array on Windows (16-bit wchar_t/Py_UNICODE) | Victor Stinner | 2013-02-26 | 1 | -11/+18 |
| |\ \ | |/ | |||||
| | * | Issue #17223: Fix test_array on Windows (16-bit wchar_t/Py_UNICODE) | Victor Stinner | 2013-02-26 | 1 | -11/+18 |
| | | | |||||
| * | | (Merge 3.3) Issue #17223: array module: Fix a crasher when converting an array | Victor Stinner | 2013-02-25 | 1 | -0/+6 |
| |\ \ | |/ | | | | | | | containing invalid characters (outside range [U+0000; U+10ffff]) to Unicode: repr(array), str(array) and array.tounicode(). Patch written by Manuel Jacob. | ||||
| | * | Issue #17223: array module: Fix a crasher when converting an array containing | Victor Stinner | 2013-02-25 | 1 | -0/+6 |
| | | | | | | | | | | | invalid characters (outside range [U+0000; U+10ffff]) to Unicode: repr(array), str(array) and array.tounicode(). Patch written by Manuel Jacob. | ||||
| * | | #16888: merge with 3.3. | Ezio Melotti | 2013-01-10 | 1 | -49/+15 |
| |\ \ | |/ | |||||
| | * | #16888: test_array now works with unittest test discovery. Patch by Zachary ↵ | Ezio Melotti | 2013-01-10 | 1 | -49/+15 |
| | | | | | | | | | Ware. | ||||
| * | | Replace IOError with OSError (#16715) | Andrew Svetlov | 2012-12-25 | 1 | -2/+2 |
| |/ | |||||
| * | Issue #15424: Add a __sizeof__ implementation for array objects. | Meador Inge | 2012-08-11 | 1 | -0/+13 |
| |\ | | | | | | | Patch by Ludwig Hähne. | ||||
| | * | Issue #15424: Add a __sizeof__ implementation for array objects. | Meador Inge | 2012-08-11 | 1 | -0/+13 |
| | | | | | | | | | Patch by Ludwig Hähne. | ||||
| * | | Issue #13072: Fix test_array for installation without the ctypes module | Victor Stinner | 2012-08-08 | 1 | -2/+11 |
| | | | |||||
| * | | Issue #13072: Ooops, now fix test_array for Linux with 32-bit wchar_t... | Victor Stinner | 2012-08-08 | 1 | -1/+2 |
| | | | |||||
| * | | Issue #13072: Fix test_array for Windows with 16-bit wchar_t | Victor Stinner | 2012-08-08 | 1 | -2/+2 |
| | | | |||||
| * | | Issue #14288: Serialization support for builtin iterators. | Kristján Valur Jónsson | 2012-04-03 | 1 | -0/+14 |
| | | | |||||
| * | | Remove mention of narrow/wide builds and update array doc, add a test. | Ezio Melotti | 2011-10-25 | 1 | -1/+2 |
| | | | |||||
| * | | array module uses the new Unicode API | Victor Stinner | 2011-09-29 | 1 | -2/+6 |
| | | | | | | | | | | | * Use Py_UCS4* buffer instead of Py_UNICODE* * Use "I" or "L" format, instead of "u" format | ||||
| * | | Issue #1172711: Add 'long long' support to the array module. | Meador Inge | 2011-09-21 | 1 | -0/+21 |
| |/ | | | | Initial patch by Oren Tirosh and Hirokazu Yamamoto. | ||||
| * | Issue #5109: array.array constructor will now use fast code when | Alexander Belopolsky | 2011-01-11 | 1 | -0/+10 |
| | | | | | initial data is provided in an array object with correct type. | ||||
| * | test_array: fix the DeprecationWarning('object.__init__() takes no parameters') | Victor Stinner | 2011-01-04 | 1 | -1/+1 |
| | | |||||
| * | #10668: fix wrong call of __init__. | Georg Brandl | 2010-12-10 | 1 | -1/+1 |
| | | |||||
| * | #1569291: speed up array.repeat() by making only O(log n) memcpy() calls; ↵ | Georg Brandl | 2010-12-04 | 1 | -0/+6 |
| | | | | | the code follows unicode_repeat. | ||||
| * | #9424: Replace deprecated assert* methods in the Python test suite. | Ezio Melotti | 2010-11-20 | 1 | -4/+4 |
| | | |||||
| * | Issue #8990: array.fromstring() and array.tostring() get renamed to | Antoine Pitrou | 2010-09-01 | 1 | -10/+48 |
| | | | | | | | frombytes() and tobytes(), respectively, to avoid confusion. Furthermore, array.frombytes(), array.extend() as well as the array.array() constructor now accept bytearray objects. Patch by Thomas Jollans. | ||||
| * | Issue #5395: check that array.fromfile() re-raises an IOError instead of ↵ | Antoine Pitrou | 2010-07-21 | 1 | -0/+11 |
| | | | | | | | | replacing it with EOFError. (this is only an added test, but 2.x will get a fix too) | ||||
| * | convert shebang lines: python -> python3 | Benjamin Peterson | 2010-03-11 | 1 | -1/+1 |
| | | |||||
| * | Merged revisions 77821 via svnmerge from | Mark Dickinson | 2010-01-29 | 1 | -0/+3 |
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r77821 | mark.dickinson | 2010-01-29 17:11:39 +0000 (Fri, 29 Jan 2010) | 3 lines Issue #7788: Fix a crash produced by deleting a list slice with huge step value. Patch by Marcin Bachry. ........ | ||||
| * | Merged revisions 77727 via svnmerge from | Ezio Melotti | 2010-01-24 | 1 | -3/+3 |
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r77727 | ezio.melotti | 2010-01-24 18:58:36 +0200 (Sun, 24 Jan 2010) | 1 line use assert[Not]IsInstance where appropriate ........ | ||||
| * | Merged revisions 74477 via svnmerge from | Frank Wierzbicki | 2009-08-16 | 1 | -0/+19 |
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74477 | frank.wierzbicki | 2009-08-16 16:22:51 -0400 (Sun, 16 Aug 2009) | 2 lines Add test of file.write(array) extracted from Jython. ........ | ||||
| * | Don't check 64-bit test cases on 32-bit machine. | Alexandre Vassalotti | 2009-07-15 | 1 | -1/+15 |
| | | |||||
| * | Issue #2389: Implement a portable mechanism for pickling array objects. | Alexandre Vassalotti | 2009-07-15 | 1 | -10/+140 |
| | | | | | Reviewed by: Martin v. Löwis | ||||
| * | Add the fix for issue 4509 to the mapping methods. | Alexandre Vassalotti | 2009-07-05 | 1 | -26/+21 |
| | | |||||
| * | Fix array.extend and array.__iadd__ to handle the case where an array | Alexandre Vassalotti | 2009-07-05 | 1 | -0/+13 |
| | | | | | | | is extended with itself. This bug is specific the py3k version of arraymodule.c | ||||
| * | Add more test cases to BaseTest.test_memoryview_no_resize. | Alexandre Vassalotti | 2009-07-05 | 1 | -0/+6 |
| | | |||||
| * | Issue 4509: Do not modify an array if we know the change would result | Alexandre Vassalotti | 2009-07-05 | 1 | -0/+16 |
| | | | | | in a failure due to exported buffers. | ||||
| * | convert old fail* assertions to assert* | Benjamin Peterson | 2009-06-30 | 1 | -37/+37 |
| | | |||||
| * | Issue #5334: array.fromfile() failed to insert values when EOFError was raised. | Hirokazu Yamamoto | 2009-03-06 | 1 | -2/+1 |
| | | | | | Reviewed by Benjamin Peterson. | ||||
| * | Resurrect two buffer tests, converting irepeat() to imul(). Undoes part of ↵ | Raymond Hettinger | 2009-01-27 | 1 | -0/+2 |
| | | | | | r68962. | ||||
| * | As discussed on python-dev, remove several operator functions | Raymond Hettinger | 2009-01-26 | 1 | -2/+0 |
| | | | | | | | | | | isSequenceType(), isMappingType(), and isNumberType() in favor of using abstract base classes. Also, remove repeat() and irepeat() in favor of mul() and imul(). After the buildbots have had a go at this. Will backport to Py3.0.1. For Py2.7, will just mark as deprecated. | ||||
| * | Issue #4740: Use HIGHEST_PROTOCOL in pickle test. This enables test for ↵ | Hirokazu Yamamoto | 2008-12-27 | 1 | -3/+3 |
| | | | | | | | protocol 3 (== HIGHEST_PROTOCOL in 3.x) | ||||
| * | Issue #4583: crash after resizing an array.array which has buffer exports. | Antoine Pitrou | 2008-12-18 | 1 | -1/+17 |
| | | |||||
| * | Merged revisions 66703,66708 via svnmerge from | Benjamin Peterson | 2008-10-10 | 1 | -4/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66703 | gregory.p.smith | 2008-09-30 15:41:13 -0500 (Tue, 30 Sep 2008) | 6 lines Works around issue3863: freebsd4/5/6 and os2emx are known to have OS bugs when calling fork() from a child thread. This disables that unit test (with a note printed to stderr) on those platforms. A caveat about buggy platforms is added to the os.fork documentation. ........ r66708 | andrew.macintyre | 2008-09-30 22:25:25 -0500 (Tue, 30 Sep 2008) | 9 lines fix for issue 3862: test_array fails FreeBSD 7 amd64 FreeBSD 7's underlying malloc() is behaves differently to earlier versions and seriously overcommits available memory on amd64. This may affect other 64bit platforms in some circumstances, so the scale of the problematic test is wound back. Patch by Mark Dickinson, reviewed by Martin von Loewis. ........ | ||||
| * | Merged revisions 64114 via svnmerge from | Amaury Forgeot d'Arc | 2008-06-18 | 1 | -0/+17 |
| | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r64114 | gregory.p.smith | 2008-06-11 09:41:16 +0200 (mer., 11 juin 2008) | 6 lines Merge in release25-maint r60793: Added checks for integer overflows, contributed by Google. Some are only available if asserts are left in the code, in cases where they can't be triggered from Python code. ........ | ||||
