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

pidl/python: Fix compilation of py_echo.

(This used to be commit 5ee99ff31c)
This commit is contained in:
Jelmer Vernooij
2008-01-14 02:48:50 +01:00
parent 2afa1bee54
commit d5903fd75e
5 changed files with 42 additions and 7 deletions

View File

@ -18,6 +18,7 @@
*/
#include "includes.h"
#include "scripting/python/pytalloc.h"
void py_talloc_dealloc(PyObject* self)
{
@ -26,13 +27,13 @@ void py_talloc_dealloc(PyObject* self)
PyObject_Del(self);
}
PyObject *py_talloc_import(PyTypeObject *py_type, TALLOC_CTX *mem_ctx,
PyObject *py_talloc_import_ex(PyTypeObject *py_type, TALLOC_CTX *mem_ctx,
void *ptr)
{
PyObject *ret = PyObject_New(py_talloc_Object, &py_type);
py_talloc_Object *ret = PyObject_New(py_talloc_Object, py_type);
ret->talloc_ctx = talloc_reference(mem_ctx, ptr);
ret->ptr = ptr;
return ret;
return (PyObject *)ret;
}
PyObject *py_talloc_default_repr(PyObject *py_obj)