summaryrefslogtreecommitdiff
path: root/Objects/stringlib/formatter.h
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 83400 via svnmerge fromMark Dickinson2010-08-011-4/+8
* remove extra byte and fix commentBenjamin Peterson2010-06-071-2/+2
* locale grouping strings should end in '\0'Benjamin Peterson2010-06-071-1/+1
* 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
* 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 #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
* Issue #1588: Add complex.__format__.Eric Smith2009-04-301-49/+334
* 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-221-335/+476
* 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 #5247: Improve error message when unknown format codes are used when us...Eric Smith2009-02-201-17/+31
* Fix:Neal Norwitz2008-08-241-1/+4
* 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
* Fixed formatting with thousands separator and padding. Resolves issue 3140.Eric Smith2008-06-241-13/+13
* Typo in comment.Eric Smith2008-06-241-1/+1
* Modified interface to _Py_[String|Unicode]InsertThousandsGrouping, in anticip...Eric Smith2008-06-241-4/+2
* Refactor and clean up str.format() code (and helpers) in advance of optimizat...Eric Smith2008-05-301-69/+47
* Renamed PyString to PyBytesChristian Heimes2008-05-261-1/+1
* Addresses issue 2802: 'n' formatting for integers.Eric Smith2008-05-111-3/+27
* Bug #2388: Fix gcc warnings when compiling with --enable-unicode=ucs4.Martin v. Löwis2008-04-071-2/+13
* Issue 2264: empty float presentation type needs to have at least one digit pa...Eric Smith2008-03-171-1/+6
* Now that PyOS_ascii_formatd supports the 'n' format, simplify the float forma...Eric Smith2008-02-201-40/+15
* Backport of PEP 3101, Advanced String Formatting, from py3k.Eric Smith2008-02-171-0/+980