New issue 1780: pip install gevent doesn't work on pypy
https://bitbucket.org/pypy/pypy/issue/1780/pip-install-gevent-doesnt-work-on-pypy

jackychaowang:

Build error: 
* gevent/callbacks.c: 8:18: error: ‘PyThreadState’ has no member named 
‘curexc_type’
* gevent/callbacks.c:11:19: error: ‘PyThreadState’ has no member named 
‘curexc_value’
* gevent/callbacks.c:12:23: error: ‘PyThreadState’ has no member named 
‘curexc_traceback’

```
#!bash

In file included from gevent/gevent.core.c:47210:0:

gevent/callbacks.c: In function ‘gevent_handle_error’:

gevent/callbacks.c:8:18: error: ‘PyThreadState’ has no member named 
‘curexc_type’

     type = tstate->curexc_type;

                  ^

gevent/callbacks.c:11:19: error: ‘PyThreadState’ has no member named 
‘curexc_value’

     value = tstate->curexc_value;

                   ^

gevent/callbacks.c:12:23: error: ‘PyThreadState’ has no member named 
‘curexc_traceback’

     traceback = tstate->curexc_traceback;

                       ^
```


_______________________________________________
pypy-dev mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-dev

Reply via email to