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

Use consistent function names with the standard Python uuid module that is available in >= 2.4.

(This used to be commit 60d458e319)
This commit is contained in:
Jelmer Vernooij
2008-05-11 03:31:26 +02:00
parent 0b5a16abe0
commit 5319d9620b
3 changed files with 7 additions and 7 deletions

View File

@ -46,7 +46,7 @@ static PyObject *uuid_random(PyObject *self, PyObject *args)
}
static PyMethodDef methods[] = {
{ "random", (PyCFunction)uuid_random, METH_VARARGS, NULL},
{ "uuid4", (PyCFunction)uuid_random, METH_VARARGS, NULL},
{ NULL, NULL }
};