summaryrefslogtreecommitdiff
path: root/Objects/stringlib
Commit message (Expand)AuthorAgeFilesLines
* Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Martin Panter2016-09-071-1/+1
* Corrections for a/an in code comments and documentationMartin Panter2016-05-081-2/+2
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
* Issue #7267: format(int, 'c') now raises OverflowError when the argument is notVictor Stinner2015-11-091-0/+8
* Issue #12546: Allow \x00 as a fill character for builtin type __format__ meth...Eric V. Smith2014-04-141-10/+8
* fix expandtabs overflow detection to be consistent and not rely on signed ove...Benjamin Peterson2014-03-301-19/+19
* Issue #18137: Detect integer overflow on precision in float.__format__()Victor Stinner2013-06-231-2/+14
* Issue #14700: Fix buggy overflow checks for large precision and width in new-...Mark Dickinson2012-10-282-18/+13
* startswith and endswith don't accept None as slice index. Patch by Torsten Be...Jesus Cea2011-04-201-19/+48
* #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
* Merged revisions 83833,83838-83839,83859,83878 via svnmerge fromFlorent Xicluna2010-08-091-2/+2
* Merged revisions 83400 via svnmerge fromMark Dickinson2010-08-011-4/+8
* remove extra byte and fix commentBenjamin Peterson2010-06-071-2/+2
* correctly overflow when indexes are too largeBenjamin Peterson2010-06-071-0/+4
* locale grouping strings should end in '\0'Benjamin Peterson2010-06-071-1/+1
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-89/+89
* Issue #6902: Fix problem with built-in types format incorrectly with 0 padding.Eric Smith2010-02-231-4/+7
* Issue #7988: Fix default alignment to be right aligned for complex.__format__...Eric Smith2010-02-221-10/+40
* Add note about usage of STRINGLIB_EMPTY.Georg Brandl2010-01-171-4/+5
* Sanitize bloom filter macrosAntoine Pitrou2010-01-131-11/+23
* Test commit to try to diagnose failures of the IA-64 buildbotAntoine Pitrou2010-01-131-2/+2
* Issue #7622: Improve the split(), rsplit(), splitlines() and replace()Antoine Pitrou2010-01-1310-196/+504
* Issue #7462: Implement the stringlib fast search algorithm for the `rfind`,Antoine Pitrou2010-01-026-86/+94
* Issue #3382: Make '%F' and float.__format__('F') convert results to upper cas...Eric Smith2009-11-291-14/+0
* Issue #7117, continued: Remove substitution of %g-style formatting forMark Dickinson2009-11-231-6/+0
* Issue 6330: Fix --enable-unicode=ucs4.Eric Smith2009-07-301-3/+20
* Sync trunk and py3k versions of string formatting. Will manually merge into p...Eric Smith2009-07-271-0/+6
* Issue 6089: str.format raises SystemError.Eric Smith2009-05-231-2/+3
* Issue #5920: Changed format.__float__ and complex.__float__ to use a precisio...Eric Smith2009-05-051-4/+8
* Keep py3k and trunk code in sync.Eric Smith2009-05-021-0/+4
* #5889: remove comma at the end of a list that some C compilers don't like.Georg Brandl2009-05-011-1/+1
* Issue #1588: Add complex.__format__.Eric Smith2009-04-301-49/+334
* Issue #5793: rationalize isdigit / isalpha / tolower, etc. Will port to py3k....Eric Smith2009-04-271-11/+2
* Fixed issue 5782: formatting with commas didn't work if no specifier type cod...Eric Smith2009-04-221-0/+1
* Backport of some of the work in r71665 to trunk. This reworks much ofEric Smith2009-04-223-443/+676
* Fixed incorrect object passed into format_float_internal(). This was resultin...Eric Smith2009-04-131-1/+1
* Issue #532631: Replace confusing fabs(x)/1e25 >= 1e25 testMark Dickinson2009-03-291-1/+1
* Issue 5237, Allow auto-numbered replacement fields in str.format() strings.Eric Smith2009-03-141-44/+129
* Issue #5247: Improve error message when unknown format codes are used when us...Eric Smith2009-02-201-17/+31
* fix urlBenjamin Peterson2009-01-201-1/+1
* Issue #4935: The overflow checking code in the expandtabs() method commonAntoine Pitrou2009-01-131-37/+30
* #3967: Correct a crash in count() and find() methods of string-like objects.Amaury Forgeot d'Arc2008-09-262-8/+6
* Fix:Neal Norwitz2008-08-241-1/+4
* Silenced compiler warningChristian Heimes2008-08-221-1/+1
* Backport of r63826.Eric Smith2008-08-181-6/+42
* Backed out r65069, pending fixing it in Windows.Eric Smith2008-07-171-6/+6
* Issue 3382: Make '%F' and float.__format__('F') convert results to upper case.Eric Smith2008-07-171-6/+6
* Renamed a parameter in calc_number_widths, for consistency with the same para...Eric Smith2008-07-161-32/+32
* Complete issue 3083: add alternate (#) formatting to bin, oct, hex in str.for...Eric Smith2008-07-161-30/+68
* Added '#' formatting to integers. This adds the 0b, 0o, or 0x prefix for bin...Eric Smith2008-07-151-13/+43