From 6efb7ff98191c5f62f66be33591f674b682986ac Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 21 Dec 2008 07:34:27 +0100 Subject: Fix various Python-related bugs. --- lib/tevent/pytevent.c | 1 + 1 file changed, 1 insertion(+) (limited to 'lib') diff --git a/lib/tevent/pytevent.c b/lib/tevent/pytevent.c index 02e0db3f84..4f18c87a90 100644 --- a/lib/tevent/pytevent.c +++ b/lib/tevent/pytevent.c @@ -96,6 +96,7 @@ PyTypeObject PyEventContext = { .tp_methods = py_event_ctx_methods, .tp_basicsize = sizeof(py_talloc_Object), .tp_dealloc = py_talloc_dealloc, + .tp_flags = Py_TPFLAGS_DEFAULT, .tp_new = py_event_ctx_new, }; -- cgit