New issue 1879: cpyext lacks PyBytes_Type in pypy3
https://bitbucket.org/pypy/pypy/issue/1879/cpyext-lacks-pybytes_type-in-pypy3

sbehnel:

cpyext doesn't expose PyBytes_Type in pypy3. My guess is that the fix is to 
simply replace

        "PyString_Type": "space.w_str",

with

        "PyBytes_Type": "space.w_bytes",

in pypy/module/cpyext/api.py.



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

Reply via email to