[Python-checkins] cpython (merge 3.5 -> default): Merge: #27753: fix typo (name->named).

r.david.murray python-checkins at python.org
Sat Aug 13 14:48:40 EDT 2016


https://hg.python.org/cpython/rev/dda25c37d02b
changeset:   102634:dda25c37d02b
parent:      102631:1b3a987d6df0
parent:      102633:c1cc1f616285
user:        R David Murray <rdmurray at bitdance.com>
date:        Sat Aug 13 14:47:54 2016 -0400
summary:
  Merge: #27753: fix typo (name->named).

files:
  Doc/library/py_compile.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/py_compile.rst b/Doc/library/py_compile.rst
--- a/Doc/library/py_compile.rst
+++ b/Doc/library/py_compile.rst
@@ -30,7 +30,7 @@
 .. function:: compile(file, cfile=None, dfile=None, doraise=False, optimize=-1)
 
    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
+   The source code is loaded from the file named *file*.  The byte-code is
    written to *cfile*, which defaults to the :pep:`3147`/:pep:`488` path, ending
    in ``.pyc``.
    For example, if *file* is ``/foo/bar/baz.py`` *cfile* will default to

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list