- 747be08 Issue #26257: Merge buffer_tests cleanup from 3.5 by Martin Panter · 9 years ago
- 152a19c Issue #26257: Eliminate buffer_tests.py and fix ByteArrayAsStringTest by Martin Panter · 9 years ago
- f39c0ac Issue #26492: Added additional tests for exhausted iterators of mutable sequences. by Serhiy Storchaka · 9 years ago
- 8dc2ec1 Issue #26492: Added additional tests for exhausted iterators of mutable sequences. by Serhiy Storchaka · 9 years ago
- ab479c4 Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 9 years ago
- fbb1c5e Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 9 years ago
- de128e1 Issue #26015: Added new tests for pickling iterators of mutable sequences. by Serhiy Storchaka · 9 years ago
- aabafe7 Issue #26015: Added new tests for pickling iterators of mutable sequences. by Serhiy Storchaka · 9 years ago
- 7909411 Issue #19587: Merge test_bytes cleanup from 3.5 by Martin Panter · 9 years ago
- 275bd96 Issue #19587: Remove masked and redundant tests in test_bytes by Martin Panter · 9 years ago
- 3182db3 Issue #25766: Special method __bytes__() now works in str subclasses. by Serhiy Storchaka · 9 years ago
- 5aac3ed Issue #25766: Special method __bytes__() now works in str subclasses. by Serhiy Storchaka · 9 years ago
- bb6e4a0 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
- f9afda5 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
- 1509580 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
- 83ff8a6 test_bytes: new try to fix test on '%p' formatter on Windows by Victor Stinner · 9 years ago
- 2bf8993 Optimize bytes.fromhex() and bytearray.fromhex() by Victor Stinner · 9 years ago
- 7ab986d Fix test_bytes on Windows by Victor Stinner · 9 years ago
- 03dab78 Rewrite PyBytes_FromFormatV() using _PyBytesWriter API by Victor Stinner · 9 years ago
- bc9e75e Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray by Serhiy Storchaka · 9 years ago
- 7b6e3b9 Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray by Serhiy Storchaka · 9 years ago
- ef64847 Issue #23985: Fix a possible buffer overrun when deleting a slice from the front of a bytearray and then appending some other bytes data. by Antoine Pitrou · 9 years ago
- 2545411 Issue #23985: Fix a possible buffer overrun when deleting a slice from the front of a bytearray and then appending some other bytes data. by Antoine Pitrou · 9 years ago
- 32d34bc Use assertEqual rather than assertEquals to avoid the deprecation warning. by Gregory P. Smith · 10 years ago
- 8cb6569 Implements issue #9951: Adds a hex() method to bytes, bytearray, & memoryview. by Gregory P. Smith · 10 years ago
- 1dd4982 Issue #23681: The -b option now affects comparisons of bytes with int. by Serhiy Storchaka · 10 years ago
- 650c1e8 Issue #14203: Remove obsolete support for view==NULL in bytesiobuf_getbuffer() by Stefan Krah · 10 years ago
- 4e1942b Don't use deprecated assertEquals. by Serhiy Storchaka · 10 years ago
- b95b561 Issue20284: Implement PEP461 by Ethan Furman · 10 years ago
- 65ee467 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
- bad1257 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
- 83cf99d Issue #20335: bytes constructor now raises TypeError when encoding or errors by Serhiy Storchaka · 10 years ago
- 0b2cacb Issue #20335: bytes constructor now raises TypeError when encoding or errors by Serhiy Storchaka · 10 years ago
- 8a03896 Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff bytes on a 32-bit platform. by Antoine Pitrou · 10 years ago
- cc23154 Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff bytes on a 32-bit platform. by Antoine Pitrou · 10 years ago
- a2f9388 merge 3.4 (#22379) by Benjamin Peterson · 10 years ago
- c31f12d check that exception messages are not empty (#22379) by Benjamin Peterson · 10 years ago
- ffff144 Issue #22077: Improve index error messages for bytearrays, bytes, lists, and by Terry Jan Reedy · 10 years ago
- 7611964 Fix test_bytes when sys.stdin is None, for example on Windows when using by Victor Stinner · 10 years ago
- 507ac3a (Merge 3.3) Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if by Victor Stinner · 11 years ago
- c9362cf Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if "%c" by Victor Stinner · 11 years ago
- 5df8a8a Issue #19087: Improve bytearray allocation in order to allow cheap popping of data at the front (slice deletion). by Antoine Pitrou · 11 years ago
- c4a10f5 Merge 3.3. by Stefan Krah · 12 years ago
- 6e572b8 Adapt test_bytes for a build --without-doc-strings. by Stefan Krah · 12 years ago
- 5b1acc0 #16910: merge with 3.3. by Ezio Melotti · 12 years ago
- 0dceb56 #16910: test_bytes, test_unicode, and test_userstring now work with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 12 years ago
- 8b33dd8 Use OESeeror instead of os.error (#16720) by Andrew Svetlov · 12 years ago
- 7643c92 merge 3.3 (#16722) by Benjamin Peterson · 12 years ago
- 5ff3f73 try to call __bytes__ before __index__ (closes #16722) by Benjamin Peterson · 12 years ago
- 212843b #8401: merge with 3.3. by Ezio Melotti · 12 years ago
- 7376801 #8401: merge with 3.2. by Ezio Melotti · 12 years ago
- c64bcbe #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an error. by Ezio Melotti · 12 years ago
- cfc22b4 Issue #15958: bytes.join and bytearray.join now accept arbitrary buffer objects. by Antoine Pitrou · 12 years ago
- 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 13 years ago
- cda6b6d #14081: The sep and maxsplit parameter to str.split, bytes.split, and bytearray.split may now be passed as keyword arguments. by Ezio Melotti · 13 years ago
- f8eac00 Issue #13623: Fix a performance regression introduced by issue #12170 in by Victor Stinner · 13 years ago
- ac65d96 Issue #12170: The count(), find(), rfind(), index() and rindex() methods by Antoine Pitrou · 13 years ago
- 906b88f Issue #12380: PyArg_ParseTuple now accepts a bytearray for the 'c' format. by Eli Bendersky · 13 years ago
- bf1253b #6780: merge with 3.2. by Ezio Melotti · 14 years ago
- f2b3f78 #6780: merge with 3.1. by Ezio Melotti · 14 years ago
- ba42fd5 #6780: fix starts/endswith error message to mention that tuples are accepted too. by Ezio Melotti · 14 years ago
- 5020e00 Merge with 3.2. by Ezio Melotti · 14 years ago
- af92842 Use non-deprecated method name. by Ezio Melotti · 14 years ago
- c1ceb64 MERGE: startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 14 years ago
- 6159ee3 MERGE: startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 14 years ago
- ac45150 startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 14 years ago
- e0c8635d8 Merged revisions 88735 via svnmerge from by Eli Bendersky · 14 years ago
- 1bc4f19 Issue #11386: Fixed the exception thrown by bytearray.pop() for empty bytearrays by Eli Bendersky · 14 years ago
- 4db28d3 Issue #10516: added copy() and clear() methods to bytearrays as well by Eli Bendersky · 14 years ago
- 8f36af7 Normalize the encoding names for Latin-1 and UTF-8 to 'latin-1' and 'utf-8'. by Marc-André Lemburg · 14 years ago
- 29e762c test_bytes: test PyBytes_FromFormat() using ctypes by Victor Stinner · 14 years ago
- 28a4dce remove (un)transform methods by Benjamin Peterson · 14 years ago
- 0252462 #7475: add (un)transform method to bytes/bytearray and str, add back codecs that can be used with them from Python 2. by Georg Brandl · 14 years ago
- 19f2aeb Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
- b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
- edf5f0d Strengthen BytesWarning tests. by Florent Xicluna · 14 years ago
- cf940c7 Issue #9530: Fix undefined-behaviour-inducing overflow checks in bytes and bytearray implementations. by Mark Dickinson · 14 years ago
- dcb2403 Issue #8485: PyUnicode_FSConverter() doesn't accept bytearray object anymore, by Victor Stinner · 15 years ago
- 0ff8a50 Merged revisions 80125,80128,80130 via svnmerge from by Benjamin Peterson · 15 years ago
- 8380dd5 Merged revisions 80126 via svnmerge from by Benjamin Peterson · 15 years ago
- 4c04583 Merged revisions 80123-80124 via svnmerge from by Benjamin Peterson · 15 years ago
- 41a08bc Clean up warnings filter use in test_bytes. by Brett Cannon · 15 years ago
- 9b86b9a Merged revisions 79100 via svnmerge from by Florent Xicluna · 15 years ago
- a53f2c9 Merged revisions 77823 via svnmerge from by Mark Dickinson · 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
- b58e0bd use assert[Not]In where appropriate by Ezio Melotti · 15 years ago
- 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
- 20d6c15 Merged revisions 77576 via svnmerge from by Antoine Pitrou · 15 years ago
- fc8d6f4 Merged revisions 77573 via svnmerge from by Antoine Pitrou · 15 years ago
- cbaa6250 Merged revisions 77475 via svnmerge from by Antoine Pitrou · 15 years ago
- f845302 Merged revisions 77448 via svnmerge from by Antoine Pitrou · 15 years ago
- 41f58a7 Issue #7382: Fix bytes.__getnewargs__. by Alexandre Vassalotti · 15 years ago
- 344ec44 Merged revisions 76010 via svnmerge from by Antoine Pitrou · 15 years ago
- c9e9216 Fix test skipping in multibyte codec tests by Antoine Pitrou · 15 years ago
- 96bb15b Merged revisions 75404 via svnmerge from by Antoine Pitrou · 15 years ago
- 403ce78 Issue #7065: Fix a crash in bytes.maketrans and bytearray.maketrans when by Antoine Pitrou · 15 years ago
- 308d637 Merged revisions 74929 via svnmerge from by Benjamin Peterson · 15 years ago
- 424d75a Merged revisions 74675 via svnmerge from by Mark Dickinson · 15 years ago
- 54a3db9 Merged revisions 74673 via svnmerge from by Mark Dickinson · 15 years ago