summaryrefslogtreecommitdiffstats
path: root/Lib/test/regrtest.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-07-01 11:01:35 (GMT)
committerRaymond Hettinger <python@rcn.com>2004-07-01 11:01:35 (GMT)
commit7c85fa4a5203912aca564ce719a0fdd0fd5411e5 (patch)
tree6e36321b63337cb115f3ef1cdea79a7637b78a84 /Lib/test/regrtest.py
parent2ccf5d689bc1b893fc89ba3f5131a5f504dff1cd (diff)
downloadcpython-7c85fa4a5203912aca564ce719a0fdd0fd5411e5.zip
cpython-7c85fa4a5203912aca564ce719a0fdd0fd5411e5.tar.gz
cpython-7c85fa4a5203912aca564ce719a0fdd0fd5411e5.tar.bz2
Move Decimal from the sandbox into production.
Diffstat (limited to 'Lib/test/regrtest.py')
-rwxr-xr-xLib/test/regrtest.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
index d16de6b..d461589 100755
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -71,6 +71,9 @@ resources to test. Currently only the following are defined:
bsddb - It is okay to run the bsddb testsuite, which takes
a long time to complete.
+ decimal - Test the decimal module against a large suite that
+ verifies compliance with standards.
+
To enable all resources except one, use '-uall,-<resource>'. For
example, to run all the tests except for the bsddb tests, give the
option '-uall,-bsddb'.
@@ -112,7 +115,8 @@ if sys.platform == 'darwin':
from test import test_support
-RESOURCE_NAMES = ('audio', 'curses', 'largefile', 'network', 'bsddb')
+RESOURCE_NAMES = ('audio', 'curses', 'largefile', 'network', 'bsddb',
+ 'decimal')
def usage(code, msg=''):