diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-04-23 06:43:24 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-04-23 06:43:24 (GMT) |
commit | 9046df065992c1763d92ed71882e3a45c8fb7437 (patch) | |
tree | 40225fa0868d648f452a70f02d281ba3ff94a3a5 /Doc/howto | |
parent | 8b9eefc36399bb7c2e292386e9fa3ea251f85ccb (diff) | |
parent | 95b5f0ad7ee08c88b749bba2bf229a27f0e89b62 (diff) | |
download | cpython-9046df065992c1763d92ed71882e3a45c8fb7437.zip cpython-9046df065992c1763d92ed71882e3a45c8fb7437.tar.gz cpython-9046df065992c1763d92ed71882e3a45c8fb7437.tar.bz2 |
merge 3.5 (#26827)
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/cporting.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/cporting.rst b/Doc/howto/cporting.rst index d7a7086..27e7e6f 100644 --- a/Doc/howto/cporting.rst +++ b/Doc/howto/cporting.rst @@ -161,7 +161,7 @@ simple example demonstrates how. :: #define INITERROR return NULL - PyObject * + PyMODINIT_FUNC PyInit_myextension(void) #else |