| Commit message (Expand) | Author | Age | Files | Lines |
* | Expand the PySlice_GetIndicesEx macro. (#1023) (#1045) | Serhiy Storchaka | 2017-04-08 | 1 | -3/+3 |
|
|
* | bpo-29116: Fix error messages for concatenating bytes and bytearray with unsu... | Serhiy Storchaka | 2017-03-19 | 1 | -1/+1 |
|
|
* | Issue #29000: Fixed bytes formatting of octals with zero padding in alternate | Serhiy Storchaka | 2016-12-17 | 1 | -3/+2 |
|
|
* | Issue #25270: Prevent codecs.escape_encode() from raising SystemError when an... | Berker Peksag | 2016-09-16 | 1 | -5/+14 |
|
|
* | Issue #27473: Fixed possible integer overflow in bytes and bytearray | Serhiy Storchaka | 2016-07-10 | 1 | -4/+2 |
|
|
* | Issue #27125: Remove duplicated words from documentation and comments | Martin Panter | 2016-05-30 | 1 | -1/+1 |
|
|
* | Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF | Serhiy Storchaka | 2016-04-10 | 1 | -1/+1 |
|
|
* | Issue #22570: Renamed Py_SETREF to Py_XSETREF. | Serhiy Storchaka | 2016-04-06 | 1 | -1/+1 |
|
|
* | Issue #26494: Fixed crash on iterating exhausting iterators. | Serhiy Storchaka | 2016-03-30 | 1 | -1/+1 |
|
|
* | Issue #20440: Massive replacing unsafe attribute setting code with special | Serhiy Storchaka | 2015-12-24 | 1 | -2/+1 |
|
|
* | Issue #25766: Special method __bytes__() now works in str subclasses. | Serhiy Storchaka | 2015-12-20 | 1 | -6/+12 |
|
|
* | Issue #24731: Fixed crash on converting objects with special methods | Serhiy Storchaka | 2015-11-25 | 1 | -4/+4 |
|\ |
|
| * | Issue #24731: Fixed crash on converting objects with special methods | Serhiy Storchaka | 2015-11-25 | 1 | -4/+4 |
|
|
* | | Issue #23573: Restored optimization of bytes.rfind() and bytearray.rfind() | Serhiy Storchaka | 2015-07-20 | 1 | -3/+7 |
|
|
* | | Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), | Serhiy Storchaka | 2015-05-30 | 1 | -11/+22 |
|\ \
| |/ |
|
| * | Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), | Serhiy Storchaka | 2015-05-30 | 1 | -7/+13 |
|
|
* | | Specify default values of semantic booleans in Argument Clinic generated sign... | Serhiy Storchaka | 2015-05-30 | 1 | -2/+2 |
|
|
* | | Implements issue #9951: Adds a hex() method to bytes, bytearray, & memoryview. | Gregory P. Smith | 2015-04-25 | 1 | -0/+16 |
|
|
* | | Remove local dead code. In both blocks dir is always greater 0. | Christian Heimes | 2015-04-18 | 1 | -2/+1 |
|
|
* | | Issue #23944: Argument Clinic now wraps long impl prototypes at column 78. | Larry Hastings | 2015-04-14 | 1 | -6/+9 |
|
|
* | | Issue #23501: Argumen Clinic now generates code into separate files by default. | Serhiy Storchaka | 2015-04-03 | 1 | -506/+16 |
|
|
* | | Issue #23466: Raised OverflowError if %c argument is out of range. | Serhiy Storchaka | 2015-04-03 | 1 | -3/+8 |
|
|
* | | Issue #23466: %c, %o, %x, and %X in bytes formatting now raise TypeError on | Serhiy Storchaka | 2015-03-30 | 1 | -26/+55 |
|
|
* | | Issue #23573: Fix bytes.rfind() and bytearray.rfind() on Windows | Victor Stinner | 2015-03-25 | 1 | -1/+2 |
|
|
* | | Issue #23573: Increased performance of string search operations (str.find, | Serhiy Storchaka | 2015-03-24 | 1 | -9/+24 |
|
|
* | | Issue #23681: The -b option now affects comparisons of bytes with int. | Serhiy Storchaka | 2015-03-20 | 1 | -8/+17 |
|
|
* | | Close issue23467: add %r compatibility to bytes and bytearray | Ethan Furman | 2015-03-11 | 1 | -0/+2 |
|
|
* | | Issue #23629: Fix the default __sizeof__ implementation for variable-sized ob... | Antoine Pitrou | 2015-03-10 | 1 | -37/+0 |
|\ \
| |/ |
|
| * | Issue #23629: Fix the default __sizeof__ implementation for variable-sized ob... | Antoine Pitrou | 2015-03-10 | 1 | -14/+0 |
|
|
* | | Issue #23450: Fixed possible integer overflows. | Serhiy Storchaka | 2015-02-16 | 1 | -1/+1 |
|
|
* | | Issue #23383: Cleaned up bytes formatting. | Serhiy Storchaka | 2015-02-10 | 1 | -140/+51 |
|
|
* | | Issue #22896: Fixed using _getbuffer() in recently added _PyBytes_Format(). | Serhiy Storchaka | 2015-02-02 | 1 | -3/+2 |
|
|
* | | Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() | Serhiy Storchaka | 2015-02-02 | 1 | -116/+146 |
|\ \
| |/ |
|
| * | Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() | Serhiy Storchaka | 2015-02-02 | 1 | -89/+82 |
|
|
* | | Issue #20284: Fix a compilation warning on Windows | Victor Stinner | 2015-01-26 | 1 | -1/+1 |
|
|
* | | ensure ilen is initialized when it is assigned to len | Benjamin Peterson | 2015-01-26 | 1 | -1/+1 |
|
|
* | | Issue20284: Implement PEP461 | Ethan Furman | 2015-01-24 | 1 | -7/+650 |
|
|
* | | Issue #20335: bytes constructor now raises TypeError when encoding or errors | Serhiy Storchaka | 2014-12-02 | 1 | -7/+7 |
|\ \
| |/ |
|
| * | Issue #20335: bytes constructor now raises TypeError when encoding or errors | Serhiy Storchaka | 2014-12-02 | 1 | -7/+7 |
|
|
* | | Issue #22615: Argument Clinic now supports the "type" argument for the | Larry Hastings | 2014-10-13 | 1 | -1/+1 |
|
|
* | | #16518: Bring error messages in harmony with docs ("bytes-like object") | R David Murray | 2014-10-05 | 1 | -1/+1 |
|
|
* | | merge 3.4 | Benjamin Peterson | 2014-09-29 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | merge 3.3 | Benjamin Peterson | 2014-09-29 | 1 | -1/+1 |
| |\ |
|
| | * | these variables ought to be Py_ssize_t | Benjamin Peterson | 2014-09-29 | 1 | -1/+1 |
|
|
* | | | merge 3.4 (#22519) | Benjamin Peterson | 2014-09-29 | 1 | -12/+16 |
|\ \ \
| |/ / |
|
| * | | merge 3.3 (closes #22519) | Benjamin Peterson | 2014-09-29 | 1 | -12/+16 |
| |\ \
| | |/ |
|
| | * | fix overflow checking in PyBytes_Repr (closes #22519) | Benjamin Peterson | 2014-09-29 | 1 | -12/+16 |
|
|
* | | | Removed redundant casts to `char *`. | Serhiy Storchaka | 2014-09-28 | 1 | -1/+1 |
|
|
* | | | Issue #22215: Now ValueError is raised instead of TypeError when str or bytes | Serhiy Storchaka | 2014-09-06 | 1 | -2/+2 |
|
|
* | | | Issue #22207: Fix "comparison between signed and unsigned integers" warning in | Victor Stinner | 2014-08-17 | 1 | -3/+4 |
|
|