summaryrefslogtreecommitdiff
path: root/Lib/test/test_format.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #11145: Fixed miscellaneous issues with C-style formatting of typesSerhiy Storchaka2016-12-011-0/+38
* Issue #13410: Fixed a bug in PyUnicode_Format where it failed to properlySerhiy Storchaka2016-04-101-0/+1
* Issue #20532: Tests which use _testcapi now are marked as CPython only.Serhiy Storchaka2014-02-071-6/+16
* Issue #18137: Detect integer overflow on precision in float.__format__()Victor Stinner2013-06-231-0/+17
* call PyErr_Clear() when ignoring error from PyNumber_Int (closes #15516)Benjamin Peterson2013-01-021-0/+10
* Fix spacing nit. Thanks Eric Smith for the public humiliation.Mark Dickinson2010-02-231-4/+4
* Make global variable overflowok into a keyword argument; this fixes a failur...Mark Dickinson2010-02-231-16/+16
* Actually raise on failure, instead of doing nothing.Mark Dickinson2010-02-071-2/+2
* Add missing global declarations for 'overflowok'; remove 'overflowrequired', ...Mark Dickinson2010-02-071-9/+7
* Backport of some of the work in r71665 to trunk. This reworks much ofEric Smith2009-04-221-0/+4
* Backed out r65069, pending fixing it in Windows.Eric Smith2008-07-171-12/+0
* Issue 3382: Make '%F' and float.__format__('F') convert results to upper case.Eric Smith2008-07-171-0/+12
* Changed test so it no longer runs as a side effect of importing.Jerry Seutter2008-03-261-209/+222
* Issue 1742669. Now %d accepts very big float numbers.Facundo Batista2008-02-241-3/+21
* Patch #1673759: add a missing overflow check when formatting floatsGeorg Brandl2007-07-121-3/+17
* Fix those parts in the testsuite that assumed that sys.maxint would cause ove...Kristján Valur Jónsson2007-05-031-3/+5
* Patch [ 1586791 ] better error msgs for some TypeErrorsGeorg Brandl2006-11-191-2/+2
* Fix segfault when doing string formatting on subclasses of long ifNeal Norwitz2006-08-131-0/+8
* Fix a bug discovered by Kalle Svensson: comparing sys.maxint toGuido van Rossum2003-11-291-1/+1
* - Removed FutureWarnings related to hex/oct literals and conversionsGuido van Rossum2003-11-291-5/+2
* Whitespace normalization.Tim Peters2002-11-241-4/+4
* Fix SF # 635969, No error "not all arguments converted"Neal Norwitz2002-11-121-0/+8
* A test for the recent overflow-in-format-crash bug.Michael W. Hudson2002-10-111-2/+14
* Whitespace normalization.Tim Peters2002-08-081-1/+0
* Fix the problem of not raising a TypeError exception when doing:Neal Norwitz2002-07-281-1/+7
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
* Use raw-unicode-escape for the tests that require it.Martin v. Löwis2001-08-171-1/+1
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-4/+6
* Bug 415514 reported that e.g.Tim Peters2001-04-121-4/+4
* Fix for SF bug #415514: "%#x" % 0 caused assertion failure/abort.Tim Peters2001-04-121-0/+16
* String method conversion.Eric S. Raymond2001-02-091-1/+1
* Whitespace normalization. Leaving tokenize_tests.py alone for now.Tim Peters2001-01-181-1/+0
* a bold attempt to fix things broken by MAL's verify patch: importFredrik Lundh2001-01-171-2/+2
* This patch removes all uses of "assert" in the regression test suiteMarc-André Lemburg2001-01-171-1/+1
* Change expected message for ValueError, fixing bug #126400Andrew M. Kuchling2000-12-201-1/+1
* Add test case for error message raised by bad % format characterAndrew M. Kuchling2000-12-151-0/+25
* Fox for SF bug #123859: %[duxXo] long formats inconsistent.Tim Peters2000-11-301-5/+16
* Derived from Martin's SF patch 110609: support unbounded ints in %d,i,u,x,X,...Tim Peters2000-09-211-23/+136
* Marc-Andre Lemburg <mal@lemburg.com>:Marc-André Lemburg2000-06-301-0/+52