make naming convention consistent
diff --git a/Python/import.c b/Python/import.c
index bcdd68e..86150e2 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -623,7 +623,7 @@
 
 /* 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 @@
 	return m;
 
   error:
-	_RemoveModule(name);
+	remove_module(name);
 	return NULL;
 }