| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-39573: Add Py_IS_TYPE() function (GH-18488) | Dong-hee Na | 2020-02-13 | 1 | -1/+1 |
|
|
* | bpo-35134: Add Include/cpython/bytesobject.h file (GH-18494) | Victor Stinner | 2020-02-12 | 1 | -122/+4 |
|
|
* | bpo-39372: Clean header files of declared interfaces with no implementations ... | Pablo Galindo | 2020-01-18 | 1 | -22/+0 |
|
|
* | Cut disused recode_encoding logic in _PyBytes_DecodeEscape. (GH-16013) | Greg Price | 2019-09-12 | 1 | -3/+1 |
|
|
* | bpo-32150: Expand tabs to spaces in C files. (#4583) | Serhiy Storchaka | 2017-11-28 | 1 | -7/+7 |
|
|
* | Issue #29058: All stable API extensions added after Python 3.2 are now | Serhiy Storchaka | 2016-12-27 | 1 | -0/+2 |
|
|
* | Issue 28128: Print out better error/warning messages for invalid string escap... | Eric V. Smith | 2016-10-31 | 1 | -0/+5 |
|
|
* | Issue #27895: Spelling fixes (Contributed by Ville Skyttä). | Raymond Hettinger | 2016-08-30 | 1 | -1/+1 |
|
|
* | Issue #15984: Merge PyUnicode doc from 3.5 | Martin Panter | 2016-04-15 | 1 | -1/+1 |
|\ |
|
| * | Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc | Martin Panter | 2016-04-15 | 1 | -1/+1 |
|
|
* | | Add _PyBytesWriter_Resize() function | Victor Stinner | 2015-10-14 | 1 | -1/+18 |
|
|
* | | Optimize bytes.fromhex() and bytearray.fromhex() | Victor Stinner | 2015-10-14 | 1 | -0/+3 |
|
|
* | | Optimize bytearray % args | Victor Stinner | 2015-10-14 | 1 | -1/+5 |
|
|
* | | Add use_bytearray attribute to _PyBytesWriter | Victor Stinner | 2015-10-14 | 1 | -4/+8 |
|
|
* | | Relax _PyBytesWriter API | Victor Stinner | 2015-10-12 | 1 | -7/+7 |
|
|
* | | Add _PyBytesWriter_WriteBytes() to factorize the code | Victor Stinner | 2015-10-09 | 1 | -0/+7 |
|
|
* | | _PyBytesWriter: rename size attribute to min_size | Victor Stinner | 2015-10-09 | 1 | -2/+3 |
|
|
* | | Issue #25318: cleanup code _PyBytesWriter | Victor Stinner | 2015-10-09 | 1 | -2/+2 |
|
|
* | | Issue #25318: Move _PyBytesWriter to bytesobject.c | Victor Stinner | 2015-10-08 | 1 | -0/+52 |
|/ |
|
* | Issue20284: Implement PEP461 | Ethan Furman | 2015-01-24 | 1 | -0/+1 |
|
|
* | Issue #18722: Remove uses of the "register" keyword in C code. | Antoine Pitrou | 2013-08-13 | 1 | -5/+5 |
|
|
* | Simplify and optimize formatlong() | Victor Stinner | 2012-04-27 | 1 | -2/+0 |
|
|
* | Merge branches/pep-0384. | Martin v. Löwis | 2010-12-03 | 1 | -1/+10 |
|
|
* | make hashes always the size of pointers; introduce Py_hash_t #9778 | Benjamin Peterson | 2010-10-17 | 1 | -1/+1 |
|
|
* | The other half of Issue #1580: use short float repr where possible. | Eric Smith | 2009-04-16 | 1 | -14/+12 |
|
|
* | Added ',' thousands grouping to int.__format__. See PEP 378. | Eric Smith | 2009-04-03 | 1 | -1/+13 |
|
|
* | make bytes(o) respect __bytes__ #2415 | Benjamin Peterson | 2008-08-26 | 1 | -0/+1 |
|
|
* | Merged revisions 64491 via svnmerge from | Eric Smith | 2008-06-24 | 1 | -2/+2 |
|
|
* | Merged revisions 63829-63831,63858,63865,63879,63882,63948,63970-63972,63976,... | Georg Brandl | 2008-06-10 | 1 | -4/+4 |
|
|
* | remove PyBytes_Format from header | Benjamin Peterson | 2008-05-26 | 1 | -1/+0 |
|
|
* | Renamed files bytesobject.[ch] and stringobject.[ch] | Christian Heimes | 2008-05-26 | 1 | -40/+98 |
|
|
* | Renamed PyBytes to PyByteArray | Christian Heimes | 2008-05-26 | 1 | -14/+14 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -2/+2 |
|
|
* | Added all PyTypeObjects to the appropriate header files. | Christian Heimes | 2007-11-29 | 1 | -0/+1 |
|
|
* | Fix typo in comment | Neal Norwitz | 2007-08-25 | 1 | -1/+1 |
|
|
* | Code review of the new buffer protocol. Mostly add questions that should | Neal Norwitz | 2007-08-19 | 1 | -0/+1 |
|
|
* | Merged in py3k-buffer branch to main line. All objects now use the buffer pr... | Travis E. Oliphant | 2007-08-18 | 1 | -0/+1 |
|
|
* | Fix merge breakage. | Martin v. Löwis | 2007-07-21 | 1 | -1/+1 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -1/+1 |
|
|
* | Add asserts to PyBytes_AS_STRING and PyBytes_GET_SIZE. | Guido van Rossum | 2007-06-14 | 1 | -2/+2 |
|
|
* | Rough and dirty job -- allow concatenation of bytes and arbitrary | Guido van Rossum | 2007-04-13 | 1 | -0/+1 |
|
|
* | Optimizations for bytes reallocation. | Guido van Rossum | 2006-05-05 | 1 | -0/+1 |
|
|
* | Added much functionality to the bytes type. | Guido van Rossum | 2006-04-24 | 1 | -2/+3 |
|
|
* | Here is a bytes type. It's very minimal but it's a start. | Guido van Rossum | 2006-04-22 | 1 | -0/+47 |
|
|