Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-46670: Define all macros for stringlib (GH-31176) | Victor Stinner | 2022-02-07 | 1 | -7/+7 |
| | | | | | bytesobject.c, bytearrayobject.c and unicodeobject.c now define all macros used by stringlib, to avoid using undefined macros. Fix "gcc -Wundef" warnings. | ||||
* | bpo-39573: Use Py_SET_SIZE() function (GH-18402) | Victor Stinner | 2020-02-07 | 1 | -1/+1 |
| | | | | Replace direct acccess to PyVarObject.ob_size with usage of the Py_SET_SIZE() function. | ||||
* | Issue #18722: Remove uses of the "register" keyword in C code. | Antoine Pitrou | 2013-08-13 | 1 | -2/+2 |
| | |||||
* | Implement PEP 393. | Martin v. Löwis | 2011-09-28 | 1 | -15/+11 |
| | |||||
* | svnmerge duplicated contents of Objects/stringlib/split.h | Antoine Pitrou | 2010-01-13 | 1 | -394/+0 |
| | |||||
* | Merged revisions 77461 via svnmerge from | Antoine Pitrou | 2010-01-13 | 1 | -0/+788 |
svn+ssh://pythondev@svn.python.org/python/trunk ........ r77461 | antoine.pitrou | 2010-01-13 08:55:48 +0100 (mer., 13 janv. 2010) | 5 lines Issue #7622: Improve the split(), rsplit(), splitlines() and replace() methods of bytes, bytearray and unicode objects by using a common implementation based on stringlib's fast search. Patch by Florent Xicluna. ........ |