X-Git-Url: https://git.distorted.org.uk/~mdw/mLib-python/blobdiff_plain/b3c87d862e8f44754113ee9bf374e9fcfbc9e7ac..b51b6cf0b65c84c7b9e130719beede595cc1bfbd:/ident.pyx diff --git a/ident.pyx b/ident.pyx index e7c05d2..d19c3a4 100644 --- a/ident.pyx +++ b/ident.pyx @@ -157,7 +157,7 @@ cdef class SelIdentify: def bogus(me): return _maybecall(me._bogus, ()) -cdef void _identfunc2(ident_reply *i, void *arg): +cdef void _identfunc(ident_reply *i, void *arg): cdef SelIdentify id id = arg id._dead() @@ -167,9 +167,5 @@ cdef void _identfunc2(ident_reply *i, void *arg): id.error(i.u.error) elif i.type == IDENT_USERID: id.user(i.u.userid.os, i.u.userid.user) -cdef void _identfunc(ident_reply *i, void *arg): - PyEval_AcquireLock() - _identfunc2(i, arg) - PyEval_ReleaseLock() #----- That's all, folks ----------------------------------------------------