[Python-checkins] cpython (2.7): #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/b1e4c8a3e786
changeset:   102632:b1e4c8a3e786
branch:      2.7
parent:      102629:825713d3786a
user:        R David Murray <rdmurray at bitdance.com>
date:        Sat Aug 13 14:46:23 2016 -0400
summary:
  #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
@@ -29,7 +29,7 @@
 .. 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

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


More information about the Python-checkins mailing list