Re: [Cython] IPython with Cython support on Android

2015-01-27 Thread William Stein
On Tue, Jan 27, 2015 at 6:12 AM, Apps Embedded wrote: > Hi, > > We have developped an android app which makes it possible to use the IPython > shell through Android. > > https://play.google.com/store/apps/details?id=com.appsopensource.labpy > https://play.google.com/store/apps/details?id=com.appso

[Cython] IPython with Cython support on Android

2015-01-27 Thread Apps Embedded
Hi, We have developped an android app which makes it possible to use the IPython shell through Android. https://play.google.com/store/apps/details?id=com.appsopensource.labpy https://play.google.com/store/apps/details?id=com.appsopensource.labpypremium We decided then to add the Cython extension

[Cython] bug in typed memoryviews (memoryviewslice)

2015-01-27 Thread Richard Hansen
Hi all, If I create foo.pyx with the following contents: cpdef object foo(): cdef unsigned char[:] s = "012345" return s I notice the following behavior: $ python -c ' import foo m=foo.foo() print repr(memoryview(m.base).tobytes()) print repr(memoryview(m).tobytes()) ' '012345' '123450'