Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [3.6] bpo-29549: Fixes docstring for str.index (GH-256) (GH-1028) | Mariatta | 2017-04-09 | 1 | -3/+10 |
| | | | (cherry picked from commit 43ba8861e0ad044efafa46a7cc04e12ac5df640e) | ||||
* | remove all usage of Py_LOCAL | Benjamin Peterson | 2016-09-09 | 1 | -2/+2 |
| | |||||
* | Issue #27474: Unified error messages in the __contains__ method of bytes and | Serhiy Storchaka | 2016-07-10 | 1 | -1/+1 |
| | | | | | bytearray for integers in and out of the Py_ssize_t range. Patch by Xiang Zhang. | ||||
* | Issue #26765: Fixed parsing Py_ssize_t arguments on 32-bit Windows. | Serhiy Storchaka | 2016-07-03 | 1 | -0/+1 |
| | |||||
* | Issue #26765: Moved common code and docstrings for bytes and bytearray methods | Serhiy Storchaka | 2016-05-04 | 1 | -0/+424 |
| | | | | to bytes_methods.c. | ||||
* | Issue #25923: Added more const qualifiers to signatures of static and ↵ | Serhiy Storchaka | 2015-12-25 | 1 | -3/+3 |
| | | | | private functions. | ||||
* | Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() | Serhiy Storchaka | 2015-02-03 | 1 | -39/+7 |
|\ | | | | | | | and PyObject_AsWriteBuffer(). | ||||
| * | Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() | Serhiy Storchaka | 2015-02-03 | 1 | -27/+6 |
| | | | | | | | | and PyObject_AsWriteBuffer(). | ||||
* | | #16518: Bring error messages in harmony with docs ("bytes-like object") | R David Murray | 2014-10-05 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | Some time ago we changed the docs to consistently use the term 'bytes-like object' in all the contexts where bytes, bytearray, memoryview, etc are used. This patch (by Ezio Melotti) completes that work by changing the error messages that previously reported that certain types did "not support the buffer interface" to instead say that a bytes-like object is required. (The glossary entry for bytes-like object references the discussion of the buffer protocol in the docs.) | ||||
* | | Issue #20179: Apply Argument Clinic to bytes and bytearray. | Martin v. Löwis | 2014-07-27 | 1 | -4/+2 |
|/ | | | | Patch by Tal Einat. | ||||
* | Issue #18722: Remove uses of the "register" keyword in C code. | Antoine Pitrou | 2013-08-13 | 1 | -15/+15 |
| | |||||
* | Issue #13738: Simplify implementation of bytes.lower() and bytes.upper(). | Antoine Pitrou | 2012-01-08 | 1 | -10/+2 |
| | |||||
* | Fix closes Issue12385 - Clarify maketrans method docstring for bytes and ↵ | Senthil Kumaran | 2011-06-27 | 1 | -4/+4 |
| | | | | bytearray object. | ||||
* | Fix (harmless) warning with MSVC. | Antoine Pitrou | 2010-08-15 | 1 | -1/+1 |
| | |||||
* | Fix indentation and remove dead code. | Antoine Pitrou | 2010-08-15 | 1 | -132/+98 |
| | |||||
* | Fix the docstrings of the capitalize method. | Senthil Kumaran | 2010-07-05 | 1 | -1/+2 |
| | |||||
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -157/+157 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines Untabify C files. Will watch buildbots. ........ | ||||
* | Issue #7065: Fix a crash in bytes.maketrans and bytearray.maketrans when | Antoine Pitrou | 2009-10-14 | 1 | -2/+2 |
| | | | | using byte values greater than 127. Patch by egreen. | ||||
* | Merged revisions 72040 via svnmerge from | Eric Smith | 2009-04-27 | 1 | -246/+33 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72040 | eric.smith | 2009-04-27 15:04:37 -0400 (Mon, 27 Apr 2009) | 1 line Issue #5793: rationalize isdigit / isalpha / tolower, etc. Will port to py3k. Should fix Windows buildbot errors. ........ | ||||
* | Add bytes/bytearray.maketrans() to mirror str.maketrans(), and deprecate | Georg Brandl | 2009-04-12 | 1 | -0/+67 |
| | | | | string.maketrans() which actually works on bytes. (Also closes #5675.) | ||||
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -10/+10 |
| | |||||
* | For PEP3137: Adds missing methods to the mutable PyBytes object (soon | Gregory P. Smith | 2007-10-16 | 1 | -0/+610 |
to be called a buffer). Shares code with stringobject when possible. Adds unit tests with common code that should be usable to test the PEPs mutable buffer() and immutable bytes() types. http://bugs.python.org/issue1261 |