From 4ae4e7cbc0d1915711d051d9d0d6394440c20330 Mon Sep 17 00:00:00 2001 From: R David Murray Date: Sat, 13 Aug 2016 14:46:23 -0400 Subject: [PATCH] #27753: fix typo (name->named). --- Doc/library/py_compile.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.1