summaryrefslogtreecommitdiffstats
path: root/Objects/stringobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #20434 Correct error handlin of _PyString_Resize and _PyBytes_ResizeKristján Valur Jónsson2014-04-251-2/+2
* add braces and fix indentationBenjamin Peterson2014-03-301-17/+18
* fix indentation and add bracesBenjamin Peterson2014-03-301-16/+17
* Issue 18719: Remove a false optimizationRaymond Hettinger2013-08-141-1/+0
* Issue #18427: str.replace could crash the interpreter with huge strings.Ronald Oussoren2013-07-111-3/+3
* allow any type with __getitem__ to be a mapping for the purposes of % (#15801)Benjamin Peterson2013-03-241-2/+2
* Issue #17034: Use Py_CLEAR() in stringobject.c.Serhiy Storchaka2013-02-021-10/+5
* Issue #16975: Fix error handling bug in the escape-decode decoder.Serhiy Storchaka2013-01-251-0/+4
* Issue #15989: Fix possible integer overflow in str formatting as in unicode f...Serhiy Storchaka2013-01-191-2/+6
* untabifyBenjamin Peterson2013-01-021-3/+3
* call PyErr_Clear() when ignoring error from PyNumber_Int (closes #15516)Benjamin Peterson2013-01-021-1/+4
* Issue #14700: Fix buggy overflow checks for large precision and width in new-...Mark Dickinson2012-10-281-2/+2
* Issue #14783: Backport changes from 3.2.Chris Jerdonek2012-10-081-1/+1
* use the stricter PyMapping_Check (closes #15801)Benjamin Peterson2012-08-281-1/+1
* Improve tooltips for splitlines() by showing that the default for keepends is...Raymond Hettinger2012-06-021-1/+1
* fix build without Py_DEBUG and DNDEBUG (closes #14509)Benjamin Peterson2012-04-091-0/+2
* merge 2.6Benjamin Peterson2012-02-211-0/+1
|\
| * ensure no one tries to hash things before the random seed is foundBenjamin Peterson2012-02-211-0/+1
* | merge 2.6 with hash randomization fixBenjamin Peterson2012-02-211-1/+11
|\ \ | |/
| * - Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEEDBarry Warsaw2012-02-211-1/+11
| * Merged revisions 83354,83365 via svnmerge fromGeorg Brandl2010-08-011-2/+2
| * Merged revisions 82248 via svnmerge fromEzio Melotti2010-06-261-1/+1
| * Merged revisions 81860 via svnmerge fromAntoine Pitrou2010-06-091-188/+188
| * Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-3629/+3629
| * Merged revisions 77743 via svnmerge fromEzio Melotti2010-01-251-1/+1
| * Merged revisions 75363,75365,75376,75392,75394,75403,75418,75484,75572,75580,...Georg Brandl2009-10-271-2/+2
| * Merged revisions 74575 via svnmerge fromMark Dickinson2009-08-281-1/+3
| * Merged revisions 70682 via svnmerge fromMark Dickinson2009-03-291-1/+10
| * Merged revisions 70678 via svnmerge fromMark Dickinson2009-03-291-1/+1
| * Merged revisions 66766-66767,66771-66772,66774,66776,66783-66787,66790,66793,...Benjamin Peterson2008-10-041-7/+7
* | merge from 3.2 - Fix closes Issue12621 - Fix docstrings of find and rfind met...Senthil Kumaran2011-07-271-2/+2
* | Issue #12164: Document (in docstring) that str.translate accepts None for the...Mark Dickinson2011-06-251-1/+3
* | #6780: fix starts/endswith error message to mention that tuples are accepted ...Ezio Melotti2011-04-261-2/+10
* | startswith and endswith don't accept None as slice index. Patch by Torsten Be...Jesus Cea2011-04-201-18/+5
* | Issue #11634: Remove misleading paragraph from a commentEli Bendersky2011-03-241-6/+2
* | #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
* | Improved docstrings for str and unicode methods format and __format__.Eric Smith2010-11-061-2/+3
* | #9328: string format methods return strings.Georg Brandl2010-07-311-2/+2
* | Fix extra space.Ezio Melotti2010-06-261-1/+1
* | Issue #8930: fix some C code indentationAntoine Pitrou2010-06-091-172/+172
* | Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-3306/+3306
* | always check _PyString_Resize for errorBenjamin Peterson2010-04-021-10/+12
* | #7775: fixed docstring for rpartitionEzio Melotti2010-01-251-1/+1
* | Issue #7622: Improve the split(), rsplit(), splitlines() and replace()Antoine Pitrou2010-01-131-469/+51
* | Issue #7462: Implement the stringlib fast search algorithm for the `rfind`,Antoine Pitrou2010-01-021-32/+11
* | Issue #3382: Make '%F' and float.__format__('F') convert results to upper cas...Eric Smith2009-11-291-2/+0
* | Issue #7117, continued: Remove substitution of %g-style formatting forMark Dickinson2009-11-231-3/+0
* | Remove restriction on precision when formatting floats. This is theMark Dickinson2009-11-231-57/+21
* | Issue #7228: Add '%lld' and '%llu' support to PyFormat_FromString,Mark Dickinson2009-11-151-12/+59
* | Finished removing _PyOS_double_to_string, as mentioned in issue 7117.Eric Smith2009-10-261-3/+17