From: Benjamin Peterson Date: Tue, 24 Mar 2009 01:40:39 +0000 (+0000) Subject: fix function name X-Git-Tag: v3.1a2~217 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7c43524d3cf2d141ab0bce0c1dd21bc410586cb4;p=thirdparty%2FPython%2Fcpython.git fix function name --- diff --git a/Doc/extending/extending.rst b/Doc/extending/extending.rst index ed860739e3fc..b035d94f9d7c 100644 --- a/Doc/extending/extending.rst +++ b/Doc/extending/extending.rst @@ -1262,7 +1262,7 @@ All that a client module must do in order to have access to the function :cfunc:`import_spam` in its initialization function:: PyMODINIT_FUNC - initclient(void) + PyInit_client(void) { PyObject *m;