]> granicus.if.org Git - python/commitdiff
#10559: provide instructions for accessing sys.argv when first mentioned.
authorR. David Murray <rdmurray@bitdance.com>
Fri, 17 Dec 2010 16:11:40 +0000 (16:11 +0000)
committerR. David Murray <rdmurray@bitdance.com>
Fri, 17 Dec 2010 16:11:40 +0000 (16:11 +0000)
Doc/tutorial/interpreter.rst

index f397f032eb2778af7bb88d163ee81b9a38217aad..20fae9ac2623e64edcdadc74f8a28d1ecb5633aa 100644 (file)
@@ -78,8 +78,9 @@ Argument Passing
 ----------------
 
 When known to the interpreter, the script name and additional arguments
-thereafter are passed to the script in the variable ``sys.argv``, which is a
-list of strings.  Its length is at least one; when no script and no arguments
+thereafter are turned into a list of strings and assigned to the ``argv``
+variable in the ``sys`` module.  You can access this list by executing ``import
+sys``.  The length of the list is at least one; when no script and no arguments
 are given, ``sys.argv[0]`` is an empty string.  When the script name is given as
 ``'-'`` (meaning  standard input), ``sys.argv[0]`` is set to ``'-'``.  When
 :option:`-c` *command* is used, ``sys.argv[0]`` is set to ``'-c'``.  When