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
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
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'