diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-06-23 18:24:13 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-06-23 18:24:13 (GMT) |
commit | 5707d508e1b589045ce1062da3497ad9653f1cf6 (patch) | |
tree | bc2ba43038f5011301e09cf2e78c213f2b3e6114 /Misc | |
parent | c00fffb659bc69666ba05025057e762cf24e76b0 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |