On Tue, Feb 2, 2016 at 10:43 AM, Marvin Ritter wrote:
> Ok, I can update the numpy/__init__.pxd to match the new API and create a
> pull request for it. How do we want to handle the deprecated methods and
> types? 1.7 not only added new stuff it also changed return values and type
> names. If we r
Ok, I can update the numpy/__init__.pxd to match the new API and create a
pull request for it. How do we want to handle the deprecated methods and
types? 1.7 not only added new stuff it also changed return values and type
names. If we remove old names user will be forced to update their code.
Other
On Mon, Feb 1, 2016 at 3:22 PM, Marvin Ritter wrote:
> Hi,
>
> I have to use the NumPy C API for my current project and it seems that
> Cython 0.23.4 it only shipping definitions for on all version of the API.
> But I need some of the newer methods.
>
> What are your plans on updating? Is there an
Hi,
I have to use the NumPy C API for my current project and it seems that
Cython 0.23.4 it only shipping definitions for on all version of the API.
But I need some of the newer methods.
What are your plans on updating? Is there anything that prevents you?
And if not, how complicated is it? Could
Great--thanks!
On Tue, Feb 2, 2016 at 12:56 AM Robert Bradshaw wrote:
> On Mon, Feb 1, 2016 at 5:03 PM, Kevin Thornton wrote:
> > Hi,
> >
> > I recently ran into an issue where I found that Cython will not generate
> > code to auto-convert structs do dicts if the struct is declared in a C++
> >
On Mon, Feb 1, 2016 at 5:03 PM, Kevin Thornton wrote:
> Hi,
>
> I recently ran into an issue where I found that Cython will not generate
> code to auto-convert structs do dicts if the struct is declared in a C++
> namespace.
>
> The issue has also been discussed here:
> http://stackoverflow.com/qu
+1 to a better error message. Pull requests accepted :). As for
actually implementing this feature, the pull request has been bogged
down in trying to accept expressions and types in exactly the right
places. (It's messy because one needs both Fizzle[bubble*] and
Fizzle[bubble*bubble] to parse...