summaryrefslogtreecommitdiff
path: root/NEWS.txt
diff options
context:
space:
mode:
authorsteven.bethard <devnull@localhost>2010-02-28 08:37:14 +0000
committersteven.bethard <devnull@localhost>2010-02-28 08:37:14 +0000
commit3be7b3eb9fc55ddad0a5950602deabcff5f046d9 (patch)
tree064cf4da25c2d9930963c9dad7205fa00c1f8d6d /NEWS.txt
parentf34cf60cfcb22c8929543411c15fe662849e4a6a (diff)
downloadargparse-3be7b3eb9fc55ddad0a5950602deabcff5f046d9.tar.gz
Better error messages for errors like type='int'. This actually caught a bug in one of the tests and as I result, this patch also makes sure that types display as their type name when %(type)s is specified.
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 98c7139..b13da28 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -9,6 +9,7 @@ What's New in argparse 1.1
- Issue #39: Better error messages for invalid actions.
- Issue #43: Deprecate ArgumentParser(..., version=XXX, ...) and friends.
- Issue #46: Allow single character options, e.g. '-' and '+'.
+- Issue #51: Better error messages for errors like type='int'.
- Namespace objects now support "in" (i.e. __contains__).
- Usage and help (but not version) messages are written to stdout, not stderr.