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:
@ -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;
|
||||
|
Reference in New Issue
Block a user