Alex <[email protected]> writes: > Hi, > > i have some problem with the mwlib server. I have searched for it, but > without success. Does someone know what returncode 6 means? i get the > following Error (just a cutout): > > python: signal.c:294: evsignal_dealloc: Assertion `(((&base- >>sig.signalqueue)->tqh_first) == ((void *)0))' failed.
returncode 6 means the program exited on signal 6, which is SIGABRT. The problem is that the above assertion fails. That code is part of libevent, which is used by gevent. I suggest you try to upgrade gevent to 1.0 by running ,---- | pip install -i http://pypi.pediapress.com/simple/ -U gevent `---- -- Cheers Ralf -- You received this message because you are subscribed to the Google Groups "mwlib" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/mwlib?hl=en.
