diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-03-24 01:40:39 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-03-24 01:40:39 (GMT) |
commit | 7c43524d3cf2d141ab0bce0c1dd21bc410586cb4 (patch) | |
tree | 213501fbf97e972edecfd1e9026317892720a352 /Doc/extending/extending.rst | |
parent | 4c93dcbbefe0e1d5e62527a244bd2d3fa1ec0788 (diff) | |
download | cpython-7c43524d3cf2d141ab0bce0c1dd21bc410586cb4.zip cpython-7c43524d3cf2d141ab0bce0c1dd21bc410586cb4.tar.gz cpython-7c43524d3cf2d141ab0bce0c1dd21bc410586cb4.tar.bz2 |
fix function name
Diffstat (limited to 'Doc/extending/extending.rst')
-rw-r--r-- | Doc/extending/extending.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/extending/extending.rst b/Doc/extending/extending.rst index ed86073..b035d94 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; |