summaryrefslogtreecommitdiffstats
path: root/Objects/bytesobject.c
Commit message (Expand)AuthorAgeFilesLines
...
* | | Relax _PyBytesWriter APIVictor Stinner2015-10-121-8/+7
* | | Issue #25349: Add fast path for b'%c' % intVictor Stinner2015-10-091-10/+15
* | | Issue #25349: Optimize bytes % intVictor Stinner2015-10-091-0/+36
* | | Add _PyBytesWriter_WriteBytes() to factorize the codeVictor Stinner2015-10-091-0/+14
* | | _PyBytesWriter: simplify code to avoid "prealloc" parametersVictor Stinner2015-10-091-9/+7
* | | _PyBytesWriter: rename size attribute to min_sizeVictor Stinner2015-10-091-7/+7
* | | Issue #25349: Optimize bytes % args using the new private _PyBytesWriter APIVictor Stinner2015-10-091-59/+128
* | | Issue #25318: cleanup code _PyBytesWriterVictor Stinner2015-10-091-17/+17
* | | Issue #25318: Fix compilation errorVictor Stinner2015-10-091-1/+1
* | | Issue #25318: Move _PyBytesWriter to bytesobject.cVictor Stinner2015-10-081-0/+193
|/ /
* | Issue #23573: Restored optimization of bytes.rfind() and bytearray.rfind()Serhiy Storchaka2015-07-201-3/+7
* | Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),Serhiy Storchaka2015-05-301-11/+22
|\ \ | |/
| * Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),Serhiy Storchaka2015-05-301-7/+13
* | Specify default values of semantic booleans in Argument Clinic generated sign...Serhiy Storchaka2015-05-301-2/+2
* | Implements issue #9951: Adds a hex() method to bytes, bytearray, & memoryview.Gregory P. Smith2015-04-251-0/+16
* | Remove local dead code. In both blocks dir is always greater 0.Christian Heimes2015-04-181-2/+1
* | Issue #23944: Argument Clinic now wraps long impl prototypes at column 78.Larry Hastings2015-04-141-6/+9
* | Issue #23501: Argumen Clinic now generates code into separate files by default.Serhiy Storchaka2015-04-031-506/+16
* | Issue #23466: Raised OverflowError if %c argument is out of range.Serhiy Storchaka2015-04-031-3/+8
* | Issue #23466: %c, %o, %x, and %X in bytes formatting now raise TypeError onSerhiy Storchaka2015-03-301-26/+55
* | Issue #23573: Fix bytes.rfind() and bytearray.rfind() on WindowsVictor Stinner2015-03-251-1/+2
* | Issue #23573: Increased performance of string search operations (str.find,Serhiy Storchaka2015-03-241-9/+24
* | Issue #23681: The -b option now affects comparisons of bytes with int.Serhiy Storchaka2015-03-201-8/+17
* | Close issue23467: add %r compatibility to bytes and bytearrayEthan Furman2015-03-111-0/+2
* | Issue #23629: Fix the default __sizeof__ implementation for variable-sized ob...Antoine Pitrou2015-03-101-37/+0
|\ \ | |/
| * Issue #23629: Fix the default __sizeof__ implementation for variable-sized ob...Antoine Pitrou2015-03-101-14/+0
* | Issue #23450: Fixed possible integer overflows.Serhiy Storchaka2015-02-161-1/+1
* | Issue #23383: Cleaned up bytes formatting.Serhiy Storchaka2015-02-101-140/+51
* | Issue #22896: Fixed using _getbuffer() in recently added _PyBytes_Format().Serhiy Storchaka2015-02-021-3/+2
* | Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka2015-02-021-116/+146
|\ \ | |/
| * Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka2015-02-021-89/+82
* | Issue #20284: Fix a compilation warning on WindowsVictor Stinner2015-01-261-1/+1
* | ensure ilen is initialized when it is assigned to lenBenjamin Peterson2015-01-261-1/+1
* | Issue20284: Implement PEP461Ethan Furman2015-01-241-7/+650
* | Issue #20335: bytes constructor now raises TypeError when encoding or errorsSerhiy Storchaka2014-12-021-7/+7
|\ \ | |/
| * Issue #20335: bytes constructor now raises TypeError when encoding or errorsSerhiy Storchaka2014-12-021-7/+7
* | Issue #22615: Argument Clinic now supports the "type" argument for theLarry Hastings2014-10-131-1/+1
* | #16518: Bring error messages in harmony with docs ("bytes-like object")R David Murray2014-10-051-1/+1
* | merge 3.4Benjamin Peterson2014-09-291-1/+1
|\ \ | |/
| * merge 3.3Benjamin Peterson2014-09-291-1/+1
| |\
| | * these variables ought to be Py_ssize_tBenjamin Peterson2014-09-291-1/+1
* | | merge 3.4 (#22519)Benjamin Peterson2014-09-291-12/+16
|\ \ \ | |/ /
| * | merge 3.3 (closes #22519)Benjamin Peterson2014-09-291-12/+16
| |\ \ | | |/
| | * fix overflow checking in PyBytes_Repr (closes #22519)Benjamin Peterson2014-09-291-12/+16
* | | Removed redundant casts to `char *`.Serhiy Storchaka2014-09-281-1/+1
* | | Issue #22215: Now ValueError is raised instead of TypeError when str or bytesSerhiy Storchaka2014-09-061-2/+2
* | | Issue #22207: Fix "comparison between signed and unsigned integers" warning inVictor Stinner2014-08-171-3/+4
* | | Optimize PyBytes_FromObject(): only overallocate when size=0 to not get theVictor Stinner2014-08-171-1/+3
* | | Issue #22077: Improve index error messages for bytearrays, bytes, lists, andTerry Jan Reedy2014-08-021-1/+1
* | | Rerun AC, silence pointer conversion warnings.Martin v. Löwis2014-07-271-71/+100