[Python-checkins] cpython: Fix a typo (see #3080)

eric.araujo python-checkins at python.org
Mon Mar 21 03:22:58 CET 2011


http://hg.python.org/cpython/rev/ee4e780a6b7a
changeset:   68788:ee4e780a6b7a
parent:      68768:7f4a4e393058
user:        Éric Araujo <merwok at netwok.org>
date:        Sun Mar 20 18:08:19 2011 +0100
summary:
  Fix a typo (see #3080)

files:
  Doc/c-api/import.rst

diff --git a/Doc/c-api/import.rst b/Doc/c-api/import.rst
--- a/Doc/c-api/import.rst
+++ b/Doc/c-api/import.rst
@@ -112,7 +112,7 @@
 
 .. c:function:: PyObject* PyImport_AddModule(const char *name)
 
-   Similar to :c:func:`PyImport_AddModuleObject`, but the name is an UTF-8
+   Similar to :c:func:`PyImport_AddModuleObject`, but the name is a UTF-8
    encoded string instead of a Unicode object.
 
 
@@ -237,7 +237,7 @@
 
 .. c:function:: int PyImport_ImportFrozenModule(char *name)
 
-   Similar to :c:func:`PyImport_ImportFrozenModuleObject`, but the name is an
+   Similar to :c:func:`PyImport_ImportFrozenModuleObject`, but the name is a
    UTF-8 encoded string instead of a Unicode object.
 
 

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


More information about the Python-checkins mailing list