1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-09 20:59:11 +03:00

s4-python: rename samba.glue to samba._glue to indicate it's private.

This commit is contained in:
Jelmer Vernooij
2010-04-08 20:34:40 +02:00
parent cc6e2b8a81
commit a35d876537
6 changed files with 44 additions and 44 deletions

View File

@ -309,13 +309,13 @@ static PyMethodDef py_misc_methods[] = {
{ NULL }
};
void initglue(void)
void init_glue(void)
{
PyObject *m;
debug_setup_talloc_log();
m = Py_InitModule3("glue", py_misc_methods,
m = Py_InitModule3("_glue", py_misc_methods,
"Python bindings for miscellaneous Samba functions.");
if (m == NULL)
return;