summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-06-23 18:24:13 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-06-23 18:24:13 (GMT)
commit5707d508e1b589045ce1062da3497ad9653f1cf6 (patch)
treebc2ba43038f5011301e09cf2e78c213f2b3e6114 /Misc
parentc00fffb659bc69666ba05025057e762cf24e76b0 (diff)
downloadcpython-5707d508e1b589045ce1062da3497ad9653f1cf6.zip
cpython-5707d508e1b589045ce1062da3497ad9653f1cf6.tar.gz
cpython-5707d508e1b589045ce1062da3497ad9653f1cf6.tar.bz2
#11390: convert doctest CLI to argparse and add -o and -f options.
This provides a way to specify arbitrary doctest options when using the CLI interface to process test files, just as one can when calling testmod or testfile programmatically.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8e0b300..e56c102 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -129,6 +129,9 @@ Core and Builtins
Library
-------
+- Issue #11390: Add -o and -f command line options to the doctest CLI to
+ specify doctest options (and convert it to using argparse).
+
- Issue #18135: Fix a possible integer overflow in ssl.SSLSocket.write()
and in ssl.SSLContext.load_cert_chain() for strings and passwords longer than
2 gigabytes.