Re: [Cython] Exporting inline functions from a pyx.

2015-05-30 Thread Robert Bradshaw
On Sat, May 30, 2015 at 10:46 PM, Stefan Behnel wrote: > Jesus-Omar Ocegueda-Gonzalez schrieb am 27.05.2015 um 04:17: >> we recently faced an issue exporting >> inline functions defined in a .pyx. According to this: >> http://docs.cython.org/src/tutorial/pxd_files.html >> the full inline definitio

Re: [Cython] Exporting inline functions from a pyx.

2015-05-30 Thread Stefan Behnel
Jesus-Omar Ocegueda-Gonzalez schrieb am 27.05.2015 um 04:17: > we recently faced an issue exporting > inline functions defined in a .pyx. According to this: > http://docs.cython.org/src/tutorial/pxd_files.html > the full inline definition (not just the declaration) should be in the pxd. > However,

[Cython] PEP 492 implemented (async/await)

2015-05-30 Thread Stefan Behnel
Hi, I invested a couple of days implementing PEP 492 in Cython. https://www.python.org/dev/peps/pep-0492/ It turned out nicely, so it's now merged into master to become part of Cython 0.23. I also spent some time testing and debugging it against Python 3.5 so that Yury Selivanov could adapt thei