diff options
| author | Benjamin Peterson <benjamin@python.org> | 2009-03-24 01:40:39 +0000 |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2009-03-24 01:40:39 +0000 |
| commit | 7c43524d3cf2d141ab0bce0c1dd21bc410586cb4 (patch) | |
| tree | 213501fbf97e972edecfd1e9026317892720a352 /Doc/extending | |
| parent | 4c93dcbbefe0e1d5e62527a244bd2d3fa1ec0788 (diff) | |
| download | cpython-git-7c43524d3cf2d141ab0bce0c1dd21bc410586cb4.tar.gz | |
fix function name
Diffstat (limited to 'Doc/extending')
| -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 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; |
