From: Georg Brandl Date: Tue, 24 Apr 2007 15:10:09 +0000 (+0000) Subject: Bug #1705717: error in sys.argv docs. X-Git-Tag: v2.6a1~1818 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=18afb37845ddf22f64d8b8775b8a18c0489b63ca;p=thirdparty%2FPython%2Fcpython.git Bug #1705717: error in sys.argv docs. --- diff --git a/Doc/lib/libsys.tex b/Doc/lib/libsys.tex index c0aa2380f3ae..396c91a00114 100644 --- a/Doc/lib/libsys.tex +++ b/Doc/lib/libsys.tex @@ -15,8 +15,8 @@ It is always available. whether this is a full pathname or not). If the command was executed using the \programopt{-c} command line option to the interpreter, \code{argv[0]} is set to the string \code{'-c'}. If no - script name was passed to the Python interpreter, \code{argv} has - zero length. + script name was passed to the Python interpreter, \code{argv[0]} is + the empty string. \end{datadesc} \begin{datadesc}{byteorder}