diff options
author | Fred Drake <fdrake@acm.org> | 2011-03-03 05:29:59 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2011-03-03 05:29:59 +0000 |
commit | c7eb7894d3a0878af72bfec9b65d12dd0a1e28e9 (patch) | |
tree | ccf15be0ad9ded302cb2f22fb167f1741d3f61d6 | |
parent | f0e293cbcdaabcf6b3a6a4c2470b3fab42f2e960 (diff) | |
download | cpython-git-c7eb7894d3a0878af72bfec9b65d12dd0a1e28e9.tar.gz |
Merged revisions 88717 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r88717 | fred.drake | 2011-03-03 00:27:17 -0500 (Thu, 03 Mar 2011) | 2 lines
issue 11372: use range instead of xrange
........
-rw-r--r-- | Doc/library/argparse.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index 9a65adad44..8bd3ca53bb 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -929,7 +929,7 @@ The choices_ keyword argument may be more convenient for type checkers that simply check against a range of values:: >>> parser = argparse.ArgumentParser(prog='PROG') - >>> parser.add_argument('foo', type=int, choices=xrange(5, 10)) + >>> parser.add_argument('foo', type=int, choices=range(5, 10)) >>> parser.parse_args('7'.split()) Namespace(foo=7) >>> parser.parse_args('11'.split()) @@ -1303,7 +1303,7 @@ of :data:`sys.argv`. This can be accomplished by passing a list of strings to >>> parser = argparse.ArgumentParser() >>> parser.add_argument( - ... 'integers', metavar='int', type=int, choices=xrange(10), + ... 'integers', metavar='int', type=int, choices=range(10), ... nargs='+', help='an integer in the range 0..9') >>> parser.add_argument( ... '--sum', dest='accumulate', action='store_const', const=sum, |