From: Benjamin Peterson Date: Thu, 25 Mar 2010 23:27:16 +0000 (+0000) Subject: make naming convention consistent X-Git-Tag: v2.7b1~206 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=06638735fc23da143d787575fd448c2a0aea9e51;p=python make naming convention consistent --- diff --git a/Python/import.c b/Python/import.c index bcdd68e0ef..86150e262d 100644 --- a/Python/import.c +++ b/Python/import.c @@ -623,7 +623,7 @@ PyImport_AddModule(const char *name) /* Remove name from sys.modules, if it's there. */ static void -_RemoveModule(const char *name) +remove_module(const char *name) { PyObject *modules = PyImport_GetModuleDict(); if (PyDict_GetItemString(modules, name) == NULL) @@ -695,7 +695,7 @@ PyImport_ExecCodeModuleEx(char *name, PyObject *co, char *pathname) return m; error: - _RemoveModule(name); + remove_module(name); return NULL; }