summaryrefslogtreecommitdiffstats
path: root/Python/import.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2018-01-29 19:33:57 (GMT)
committerGitHub <noreply@github.com>2018-01-29 19:33:57 (GMT)
commitc65ef772c335324deb03626cc447b89987781f27 (patch)
treefba0ec89a83165958c4e9ce631442bb9ce9ff7fa /Python/import.c
parent2a2270db9be9bdac5ffd2d50929bf905e7391a06 (diff)
downloadcpython-c65ef772c335324deb03626cc447b89987781f27.zip
cpython-c65ef772c335324deb03626cc447b89987781f27.tar.gz
cpython-c65ef772c335324deb03626cc447b89987781f27.tar.bz2
rename _imp initialization function to follow conventions (#5432)
When the C imp module became _imp in 6f44d66bc491bad5b8d897a68da68e009e27829d, the initialization function should have been renamed from PyInit_imp to PyInit__imp.
Diffstat (limited to 'Python/import.c')
-rw-r--r--Python/import.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Python/import.c b/Python/import.c
index 8d30640..eb5aeac 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -1,4 +1,3 @@
-
/* Module definition and import implementation */
#include "Python.h"
@@ -2253,7 +2252,7 @@ static struct PyModuleDef impmodule = {
const char *_Py_CheckHashBasedPycsMode = "default";
PyMODINIT_FUNC
-PyInit_imp(void)
+PyInit__imp(void)
{
PyObject *m, *d;