commit | 95b5f0ad7ee08c88b749bba2bf229a27f0e89b62 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Fri Apr 22 23:43:10 2016 -0700 |
committer | Benjamin Peterson <benjamin@python.org> | Fri Apr 22 23:43:10 2016 -0700 |
tree | 1fbab8138fab381dfac6ac8f88680e9456391368 | |
parent | 585c93daea510634ef0c99969b88bc320cdb61a1 [diff] |
fix python 3 mod init function declaration (closes #26827)
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 @@ #define INITERROR return NULL - PyObject * + PyMODINIT_FUNC PyInit_myextension(void) #else