summaryrefslogtreecommitdiff
path: root/Objects/bytes_methods.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-32677: Optimize str.isascii() (GH-5356)INADA Naoki2018-01-281-4/+36
* bpo-32677: Add .isascii() to str, bytes and bytearray (GH-5342)INADA Naoki2018-01-271-0/+20
* bpo-29549: Fixes docstring for str.index (#256)Lisa Roach2017-04-041-3/+10
* bpo-29730: replace some calls to PyNumber_Check and improve some error messag...Oren Milman2017-03-131-15/+19
* remove all usage of Py_LOCALBenjamin Peterson2016-09-091-2/+2
* Issue #27474: Unified error messages in the __contains__ method of bytes andSerhiy Storchaka2016-07-101-1/+1
* Issue #26765: Fixed parsing Py_ssize_t arguments on 32-bit Windows.Serhiy Storchaka2016-07-031-0/+1
* Issue #26765: Moved common code and docstrings for bytes and bytearray methodsSerhiy Storchaka2016-05-041-0/+424
* Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-3/+3
* Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka2015-02-031-39/+7
|\
| * Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka2015-02-031-27/+6
* | #16518: Bring error messages in harmony with docs ("bytes-like object")R David Murray2014-10-051-1/+1
* | Issue #20179: Apply Argument Clinic to bytes and bytearray.Martin v. Löwis2014-07-271-4/+2
|/
* Issue #18722: Remove uses of the "register" keyword in C code.Antoine Pitrou2013-08-131-15/+15
* Issue #13738: Simplify implementation of bytes.lower() and bytes.upper().Antoine Pitrou2012-01-081-10/+2
* Fix closes Issue12385 - Clarify maketrans method docstring for bytes and byte...Senthil Kumaran2011-06-271-4/+4
* Fix (harmless) warning with MSVC.Antoine Pitrou2010-08-151-1/+1
* Fix indentation and remove dead code.Antoine Pitrou2010-08-151-132/+98
* Fix the docstrings of the capitalize method.Senthil Kumaran2010-07-051-1/+2
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-157/+157
* Issue #7065: Fix a crash in bytes.maketrans and bytearray.maketrans whenAntoine Pitrou2009-10-141-2/+2
* Merged revisions 72040 via svnmerge fromEric Smith2009-04-271-246/+33
* Add bytes/bytearray.maketrans() to mirror str.maketrans(), and deprecateGeorg Brandl2009-04-121-0/+67
* Renamed PyString to PyBytesChristian Heimes2008-05-261-10/+10
* For PEP3137: Adds missing methods to the mutable PyBytes object (soonGregory P. Smith2007-10-161-0/+610