summaryrefslogtreecommitdiff
path: root/NEWS.txt
diff options
context:
space:
mode:
authorsteven.bethard <devnull@localhost>2010-02-28 06:49:22 +0000
committersteven.bethard <devnull@localhost>2010-02-28 06:49:22 +0000
commit22948d838fa22c160682419b4be9be7f421c5e39 (patch)
treef268ce5ee874bd0b2ba2c72adc2a9a9cfd82ef41 /NEWS.txt
parent368317de60c7dcf7c080593270c3fb5a5af1a5ba (diff)
downloadargparse-22948d838fa22c160682419b4be9be7f421c5e39.tar.gz
Deprecate ArgumentParser(..., version=XXX, ...) as well as format_version() and print_version(). These should be replaced with .add_argument(..., action='version', ...).
Diffstat (limited to 'NEWS.txt')
-rw-r--r--NEWS.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/NEWS.txt b/NEWS.txt
index 3c2b716..c4859b5 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -7,6 +7,7 @@ What's New in argparse 1.1
- Issue #37: Stop treating two character alphanumeric flags as numbers.
- Issue #38: Better error messages when 'dest' occurs twice for positional arguments.
- Issue #39: Better error messages for invalid actions.
+- Issue #43: Deprecate ArgumentParser(..., version=XXX, ...) and friends.
- Namespace objects now support "in" (i.e. __contains__).
- Usage and help (but not version) messages are written to stdout, not stderr.