From 7c43524d3cf2d141ab0bce0c1dd21bc410586cb4 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Tue, 24 Mar 2009 01:40:39 +0000 Subject: [PATCH] fix function name --- Doc/extending/extending.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/extending/extending.rst b/Doc/extending/extending.rst index ed860739e3..b035d94f9d 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; -- 2.50.1