
Hello, first question: is the PyPy Ubuntu PPA still a maintained thing? I'm not demanding free labor here, just curious whether I should wait a little for 5.0 to show up there or change my Dockerfiles to direct download. second question: does PyPy support PyByteArray_CheckExact? I seem to have some Cython-generated code using it and PyPy seems to be refusing to import the resulting module. Cheers!

Thanks for the quick reply (as always). We'll stick with the PPA. About PyByteArray_CheckExact, any chance of it getting implemented in this next round of C-API extensions? Looking in the CPython source, it seems to be a one-line macro: #define PyByteArray_CheckExact(self) (Py_TYPE(self) == &PyByteArray_Type) but I admit to knowing basically nothing about this level of code. :) I figure asking here whether it can be implemented will be better than asking Cython to stop using it ;) Cheers! On Mon, Mar 21, 2016 at 8:53 AM, Maciej Fijalkowski <fijall@gmail.com> wrote:

Thanks for the quick reply (as always). We'll stick with the PPA. About PyByteArray_CheckExact, any chance of it getting implemented in this next round of C-API extensions? Looking in the CPython source, it seems to be a one-line macro: #define PyByteArray_CheckExact(self) (Py_TYPE(self) == &PyByteArray_Type) but I admit to knowing basically nothing about this level of code. :) I figure asking here whether it can be implemented will be better than asking Cython to stop using it ;) Cheers! On Mon, Mar 21, 2016 at 8:53 AM, Maciej Fijalkowski <fijall@gmail.com> wrote:
participants (3)
-
Maciej Fijalkowski
-
Matti Picus
-
Tin Tvrtković