summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_decimal.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #24497: update link in test_decimal commentsNed Deily2015-06-241-1/+1
* Issue #23474: Enhanced locale testing.Serhiy Storchaka2015-02-181-1/+19
* Issue #22777: Test pickling with all protocols.Serhiy Storchaka2014-12-151-9/+11
* Issue #21855: Fixed the decimal module in unicode disabled build.Serhiy Storchaka2014-10-141-4/+5
* Issue 22090: Fix '%' formatting for infinities and NaNs.Stefan Krah2014-08-261-0/+5
* Issue #18492: Allow all resources when tests are not run by regrtest.py.Zachary Ware2014-06-021-2/+2
* Issue #19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-101-16/+2
* Remove overeager test (don't depend on the sign of a nan; cf. issue #14521)Mark Dickinson2012-08-241-2/+0
* Issue #15544: Fix Decimal.__float__ to work with payload-carrying NaNs.Mark Dickinson2012-08-241-0/+14
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
* Merged revisions 85503 via svnmerge fromAntoine Pitrou2010-10-141-8/+9
* Merged revisions 82646,82649-82650 via svnmerge fromMark Dickinson2010-07-081-41/+35
* Issue #8567: Fix incorrect precedence of signals in Decimal module.Mark Dickinson2010-05-041-0/+25
* Fix incorrect use of a list as the target of an 'except' clause in test_decim...Mark Dickinson2010-05-011-1/+1
* Use more specific assert* methods in test_decimal.Ezio Melotti2010-04-031-43/+43
* Issue 8257: Decimal constructor to accept float.Raymond Hettinger2010-04-021-0/+26
* Issue #7279: Make Decimal('nan') hashable. Decimal('snan') remains unhashable.Mark Dickinson2010-04-021-1/+5
* Issue #7279: Make comparisons involving a Decimal sNaN signal InvalidOperation.Mark Dickinson2010-04-021-8/+47
* Issue #2531: Make float-to-decimal comparisons return correct results.Mark Dickinson2010-04-021-0/+26
* Issue #8248: Add some tests for the bool type. Patch by Gregory Nofi.Antoine Pitrou2010-03-301-0/+6
* Fix py3k warnings in test_decimal, using unittest.assertItemsEqual.Florent Xicluna2010-03-211-17/+15
* Issue #7633: Context method in the decimal module (with the exceptionMark Dickinson2010-02-181-0/+438
* Remove unused imports in test modules.Georg Brandl2010-02-071-1/+0
* use assert[Not]IsInstance where appropriateEzio Melotti2010-01-241-2/+2
* use assert[Not]In where appropriateEzio Melotti2010-01-231-2/+2
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-24/+14
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...Senthil Kumaran2010-01-081-14/+24
* Issue #7233: A number of two-argument Decimal methods were failing toMark Dickinson2009-10-291-0/+47
* Update decimal test data to the most recent set from Mike Cowlishaw.Mark Dickinson2009-10-081-0/+11
* Issue #6857: Fix Decimal formatting to be consistent with existing floatMark Dickinson2009-09-081-1/+2
* #Issue 6795: Fix infinite recursion in long(Decimal('nan')); change int(Dec...Mark Dickinson2009-09-071-0/+10
* Issue #6850: Fix bug in Decimal._parse_format_specifier for formatsMark Dickinson2009-09-071-0/+3
* Issue #6595: Allow Decimal constructor to accept non-European decimalMark Dickinson2009-08-021-3/+9
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-46/+46
* fix incorrect auto-translation of TestSkipped -> unittest.SkipTestBenjamin Peterson2009-03-261-3/+2
* remove test_support.TestSkipped and just use unittest.SkipTestBenjamin Peterson2009-03-261-2/+2
* Fix bug in _insert_thousands_sep: too much zero padding could beMark Dickinson2009-03-181-0/+22
* Issue #2110: Add support for thousands separator and 'n' format specifierMark Dickinson2009-03-171-1/+97
* Fix bug in Decimal __format__ method that swapped left and rightMark Dickinson2009-03-171-0/+6
* Register decimals as numbers.NumberRaymond Hettinger2009-02-031-0/+7
* Remove an unnecessary check from test_decimal.Mark Dickinson2009-01-101-1/+0
* Issue 4796: Add from_float methods to the decimal module.Raymond Hettinger2009-01-031-0/+49
* Replace occurrences of '\d' with '[0-9]' in Decimal regex, to make sureMark Dickinson2008-07-021-0/+3
* Fixed some test structures. Thanks Mark Dickinson.Facundo Batista2008-05-021-16/+9
* Remove some from __future__ import with_statementsBenjamin Peterson2008-04-301-1/+0
* Issue #2482: Make sure that the coefficient of a DecimalMark Dickinson2008-03-251-0/+16
* Issue #2478: Decimal(sqrt(0)) failed when the decimal contextMark Dickinson2008-03-251-0/+6
* Small fix that complicated the test actually when thatFacundo Batista2008-03-221-4/+10
* Add __format__ method to Decimal, to support PEP 3101Mark Dickinson2008-02-291-0/+93
* Fix decimal repr which should have used single quotes like other reprs.Raymond Hettinger2008-02-141-1/+1