diff -r d9c98730e2e8 Doc/library/argparse.rst --- a/Doc/library/argparse.rst Sat Jul 07 13:34:50 2012 +1000 +++ b/Doc/library/argparse.rst Sat Jul 07 12:23:36 2012 +0200 @@ -656,6 +656,8 @@ >>> parser.add_argument('bar') +Note that while :meth:`~ArgumentParser.add_argument` allows names which are not Python identifiers, you will not be able to retrieve them as normal attributes of an :class:`ArgumentParser` object and will have to use something like :func:`getattr` instead. + When :meth:`~ArgumentParser.parse_args` is called, optional arguments will be identified by the ``-`` prefix, and the remaining arguments will be assumed to be positional:: diff -r d9c98730e2e8 Misc/ACKS --- a/Misc/ACKS Sat Jul 07 13:34:50 2012 +1000 +++ b/Misc/ACKS Sat Jul 07 12:23:36 2012 +0200 @@ -38,6 +38,7 @@ Jon Anglin Éric Araujo Alicia Arlen +Ionuț Arțăriși Jason Asbahr David Ascher Chris AtLee