diff options
author | R. David Murray <rdmurray@bitdance.com> | 2011-02-11 22:54:34 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2011-02-11 22:54:34 (GMT) |
commit | 46c4e4709aceaccce20b18d0e337c84d7cdac843 (patch) | |
tree | 967547e28366048927d88caddca5e65358b7b916 | |
parent | 335e570e38906946b49043431d98f2f018d6aaec (diff) | |
download | cpython-46c4e4709aceaccce20b18d0e337c84d7cdac843.zip cpython-46c4e4709aceaccce20b18d0e337c84d7cdac843.tar.gz cpython-46c4e4709aceaccce20b18d0e337c84d7cdac843.tar.bz2 |
Merged revisions 88402 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r88402 | r.david.murray | 2011-02-11 17:37:16 -0500 (Fri, 11 Feb 2011) | 2 lines
Fix argument name typo in compileall docs.
........
-rw-r--r-- | Doc/library/compileall.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/compileall.rst b/Doc/library/compileall.rst index bf7bb51..cf0d5f8 100644 --- a/Doc/library/compileall.rst +++ b/Doc/library/compileall.rst @@ -100,7 +100,7 @@ Public functions cases where the source file does not exist at the time the byte-code file is executed. - If *ra* is given, its search method is passed the full path name to the + If *rx* is given, its search method is passed the full path name to the file being compiled, and if it returns a true value, the file is not compiled and ``True`` is returned. |