[Python-checkins] r70577 - python/branches/py3k/Doc/extending/extending.rst
benjamin.peterson
python-checkins at python.org
Tue Mar 24 02:40:39 CET 2009
Author: benjamin.peterson
Date: Tue Mar 24 02:40:39 2009
New Revision: 70577
Log:
fix function name
Modified:
python/branches/py3k/Doc/extending/extending.rst
Modified: python/branches/py3k/Doc/extending/extending.rst
==============================================================================
--- python/branches/py3k/Doc/extending/extending.rst (original)
+++ python/branches/py3k/Doc/extending/extending.rst Tue Mar 24 02:40:39 2009
@@ -1262,7 +1262,7 @@
:cfunc:`import_spam` in its initialization function::
PyMODINIT_FUNC
- initclient(void)
+ PyInit_client(void)
{
PyObject *m;
More information about the Python-checkins
mailing list