From: R David Murray Date: Sat, 13 Aug 2016 18:46:23 +0000 (-0400) Subject: #27753: fix typo (name->named). X-Git-Tag: v2.7.13rc1~220 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4ae4e7cbc0d1915711d051d9d0d6394440c20330;p=python #27753: fix typo (name->named). --- diff --git a/Doc/library/py_compile.rst b/Doc/library/py_compile.rst index 66f015bbef..5da399920b 100644 --- a/Doc/library/py_compile.rst +++ b/Doc/library/py_compile.rst @@ -29,7 +29,7 @@ byte-code cache files in the directory containing the source code. .. function:: compile(file[, cfile[, dfile[, doraise]]]) Compile a source file to byte-code and write out the byte-code cache file. The - source code is loaded from the file name *file*. The byte-code is written to + source code is loaded from the file named *file*. The byte-code is written to *cfile*, which defaults to *file* ``+`` ``'c'`` (``'o'`` if optimization is enabled in the current interpreter). If *dfile* is specified, it is used as the name of the source file in error messages instead of *file*. If *doraise* is