| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray | Serhiy Storchaka | 2015-06-29 | 1 | -1/+18 |
| |\ | | | | | | | | | object now always allocates place for trailing null byte and it's buffer now is always null-terminated. | ||||
| | * | Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray | Serhiy Storchaka | 2015-06-29 | 1 | -1/+18 |
| | | | | | | | | | | | object now always allocates place for trailing null byte and it's buffer now is always null-terminated. | ||||
| * | | Issue #23985: Fix a possible buffer overrun when deleting a slice from the ↵ | Antoine Pitrou | 2015-05-19 | 1 | -0/+16 |
| |\ \ | |/ | | | | | | | | | front of a bytearray and then appending some other bytes data. Patch by Martin Panter. | ||||
| | * | Issue #23985: Fix a possible buffer overrun when deleting a slice from the ↵ | Antoine Pitrou | 2015-05-19 | 1 | -0/+16 |
| | | | | | | | | | | | | | front of a bytearray and then appending some other bytes data. Patch by Martin Panter. | ||||
| * | | Use assertEqual rather than assertEquals to avoid the deprecation warning. | Gregory P. Smith | 2015-04-26 | 1 | -4/+4 |
| | | | |||||
| * | | Implements issue #9951: Adds a hex() method to bytes, bytearray, & memoryview. | Gregory P. Smith | 2015-04-25 | 1 | -0/+8 |
| | | | | | | | | | | | | | | | Also updates a few internal implementations of the same thing to use the new built-in code. Contributed by Arnon Yaari. | ||||
| * | | Issue #23681: The -b option now affects comparisons of bytes with int. | Serhiy Storchaka | 2015-03-20 | 1 | -13/+28 |
| | | | |||||
| * | | Issue #14203: Remove obsolete support for view==NULL in bytesiobuf_getbuffer() | Stefan Krah | 2015-02-03 | 1 | -0/+4 |
| | | | | | | | | | and array_buffer_getbuf(). | ||||
| * | | Don't use deprecated assertEquals. | Serhiy Storchaka | 2015-01-26 | 1 | -4/+4 |
| | | | |||||
| * | | Issue20284: Implement PEP461 | Ethan Furman | 2015-01-24 | 1 | -0/+44 |
| | | | |||||
| * | | Issue #22777: Test pickling with all protocols. | Serhiy Storchaka | 2014-12-15 | 1 | -16/+17 |
| |\ \ | |/ | |||||
| | * | Issue #22777: Test pickling with all protocols. | Serhiy Storchaka | 2014-12-15 | 1 | -16/+17 |
| | | | |||||
| * | | Issue #20335: bytes constructor now raises TypeError when encoding or errors | Serhiy Storchaka | 2014-12-02 | 1 | -0/+8 |
| |\ \ | |/ | | | | | is specified with non-string argument. Based on patch by Renaud Blanch. | ||||
| | * | Issue #20335: bytes constructor now raises TypeError when encoding or errors | Serhiy Storchaka | 2014-12-02 | 1 | -0/+8 |
| | | | | | | | | | is specified with non-string argument. Based on patch by Renaud Blanch. | ||||
| * | | Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff ↵ | Antoine Pitrou | 2014-11-02 | 1 | -0/+13 |
| |\ \ | |/ | | | | | bytes on a 32-bit platform. | ||||
| | * | Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff ↵ | Antoine Pitrou | 2014-11-02 | 1 | -0/+13 |
| | | | | | | | | | bytes on a 32-bit platform. | ||||
| * | | merge 3.4 (#22379) | Benjamin Peterson | 2014-09-28 | 1 | -0/+1 |
| |\ \ | |/ | |||||
| | * | check that exception messages are not empty (#22379) | Benjamin Peterson | 2014-09-28 | 1 | -0/+1 |
| | | | | | | | | | Patch by Yongzhi Pan. | ||||
| * | | Issue #22077: Improve index error messages for bytearrays, bytes, lists, and | Terry Jan Reedy | 2014-08-02 | 1 | -0/+16 |
| |/ | | | | | tuples by adding 'or slices'. Added ', not <typename' for bytearrays. Original patch by Claudiu Popa. | ||||
| * | Fix test_bytes when sys.stdin is None, for example on Windows when using | Victor Stinner | 2014-07-28 | 1 | -1/+1 |
| | | | | | pythonw.exe instead of python.exe | ||||
| * | (Merge 3.3) Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if | Victor Stinner | 2013-12-13 | 1 | -0/+6 |
| |\ | | | | | | | "%c" argument is not in range [0; 255]. | ||||
| | * | Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if "%c" | Victor Stinner | 2013-12-13 | 1 | -0/+6 |
| | | | | | | | | | argument is not in range [0; 255]. | ||||
| * | | Issue #19087: Improve bytearray allocation in order to allow cheap popping ↵ | Antoine Pitrou | 2013-10-05 | 1 | -0/+9 |
| | | | | | | | | | of data at the front (slice deletion). | ||||
| * | | Merge 3.3. | Stefan Krah | 2013-01-26 | 1 | -0/+1 |
| |\ \ | |/ | |||||
| | * | Adapt test_bytes for a build --without-doc-strings. | Stefan Krah | 2013-01-26 | 1 | -0/+1 |
| | | | |||||
| * | | #16910: merge with 3.3. | Ezio Melotti | 2013-01-10 | 1 | -15/+9 |
| |\ \ | |/ | |||||
| | * | #16910: test_bytes, test_unicode, and test_userstring now work with unittest ↵ | Ezio Melotti | 2013-01-10 | 1 | -15/+9 |
| | | | | | | | | | test discovery. Patch by Zachary Ware. | ||||
| * | | Use OESeeror instead of os.error (#16720) | Andrew Svetlov | 2012-12-24 | 1 | -1/+1 |
| | | | | | | | | | Patch by Serhiy Storchaka. | ||||
| * | | merge 3.3 (#16722) | Benjamin Peterson | 2012-12-19 | 1 | -0/+6 |
| |\ \ | |/ | |||||
| | * | try to call __bytes__ before __index__ (closes #16722) | Benjamin Peterson | 2012-12-19 | 1 | -0/+6 |
| | | | |||||
| | * | #8401: merge with 3.2. | Ezio Melotti | 2012-11-03 | 1 | -0/+18 |
| | |\ | |||||
| * | \ | #8401: merge with 3.3. | Ezio Melotti | 2012-11-03 | 1 | -0/+18 |
| |\ \ \ | | |/ | |/| | |||||
| | * | | #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an ↵ | Ezio Melotti | 2012-11-03 | 1 | -0/+18 |
| | | | | | | | | | | | | | error. | ||||
| * | | | Issue #15958: bytes.join and bytearray.join now accept arbitrary buffer objects. | Antoine Pitrou | 2012-10-16 | 1 | -2/+21 |
| | |/ |/| | |||||
| * | | Issue #14288: Serialization support for builtin iterators. | Kristján Valur Jónsson | 2012-04-03 | 1 | -0/+18 |
| | | | |||||
| * | | #14081: The sep and maxsplit parameter to str.split, bytes.split, and ↵ | Ezio Melotti | 2012-02-26 | 1 | -0/+16 |
| | | | | | | | | | bytearray.split may now be passed as keyword arguments. | ||||
| * | | Issue #13623: Fix a performance regression introduced by issue #12170 in | Victor Stinner | 2011-12-18 | 1 | -0/+5 |
| | | | | | | | | | | | bytes.find() and handle correctly OverflowError (raise the same ValueError than the error for -1). | ||||
| * | | Issue #12170: The count(), find(), rfind(), index() and rindex() methods | Antoine Pitrou | 2011-10-20 | 1 | -15/+88 |
| | | | | | | | | | | | of bytes and bytearray objects now accept an integer between 0 and 255 as their first argument. Patch by Petri Lehtinen. | ||||
| * | | Issue #12380: PyArg_ParseTuple now accepts a bytearray for the 'c' format. | Eli Bendersky | 2011-07-29 | 1 | -0/+21 |
| | | | | | | | | | | | | | | | As a side effect, this now allows the rjust, ljust and center methods of bytes and bytearray to accept a bytearray argument. Patch by Petri Lehtinen | ||||
| * | | #6780: merge with 3.2. | Ezio Melotti | 2011-04-26 | 1 | -0/+10 |
| |\ \ | |/ | |||||
| | * | #6780: merge with 3.1. | Ezio Melotti | 2011-04-26 | 1 | -0/+10 |
| | |\ | |||||
| | | * | #6780: fix starts/endswith error message to mention that tuples are accepted ↵ | Ezio Melotti | 2011-04-26 | 1 | -0/+16 |
| | | | | | | | | | | | | | too. | ||||
| * | | | Merge with 3.2. | Ezio Melotti | 2011-04-20 | 1 | -7/+7 |
| |\ \ \ | |/ / | |||||
| | * | | Use non-deprecated method name. | Ezio Melotti | 2011-04-20 | 1 | -7/+7 |
| | | | | |||||
| * | | | MERGE: startswith and endswith don't accept None as slice index. Patch by ↵ | Jesus Cea | 2011-04-20 | 1 | -0/+62 |
| |\ \ \ | |/ / | | | | | | | Torsten Becker. (closes #11828) | ||||
| | * | | MERGE: startswith and endswith don't accept None as slice index. Patch by ↵ | Jesus Cea | 2011-04-20 | 1 | -0/+62 |
| | |\ \ | | |/ | | | | | | | Torsten Becker. (closes #11828) | ||||
| | | * | startswith and endswith don't accept None as slice index. Patch by Torsten ↵ | Jesus Cea | 2011-04-20 | 1 | -0/+62 |
| | | | | | | | | | | | | | Becker. (closes #11828) | ||||
| | | * | Merged revisions 86596 via svnmerge from | Ezio Melotti | 2010-11-21 | 1 | -13/+13 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........ | ||||
| | | * | Merged revisions 80125,80128,80130 via svnmerge from | Benjamin Peterson | 2010-04-16 | 1 | -9/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r80125 | benjamin.peterson | 2010-04-16 17:35:32 -0500 (Fri, 16 Apr 2010) | 13 lines Merged revisions 80123-80124 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r80123 | benjamin.peterson | 2010-04-16 17:24:16 -0500 (Fri, 16 Apr 2010) | 1 line bytearray -> type2test ........ r80124 | benjamin.peterson | 2010-04-16 17:25:57 -0500 (Fri, 16 Apr 2010) | 1 line fix typo ........ ................ r80128 | benjamin.peterson | 2010-04-16 17:51:37 -0500 (Fri, 16 Apr 2010) | 9 lines Merged revisions 80126 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r80126 | benjamin.peterson | 2010-04-16 17:35:38 -0500 (Fri, 16 Apr 2010) | 1 line have a clear error when passing something > sys.maxsize to bytearray ........ ................ r80130 | benjamin.peterson | 2010-04-16 18:00:53 -0500 (Fri, 16 Apr 2010) | 9 lines Merged revisions 80129 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r80129 | benjamin.peterson | 2010-04-16 17:52:44 -0500 (Fri, 16 Apr 2010) | 1 line tiny simplification ........ ................ | ||||
| | | * | Merged revisions 77823 via svnmerge from | Mark Dickinson | 2010-01-29 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r77823 | mark.dickinson | 2010-01-29 17:27:24 +0000 (Fri, 29 Jan 2010) | 10 lines Merged revisions 77821 via svnmerge from 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. ........ ................ | ||||
