cython
Cython cimport and __init__.pyx buggy?
It seems like compiling an __init__.pyx that contains a cimport statement is buggy. This is my folder-structure:[详细]
2023-03-28 09:12 分类:问答What is the meaning of this ImportError when importing a Cython generated .so file?
I am walking through the Cython documentation and building each of the example apps. I\'m a little stuck at Using C Libraries. After successfully building the .so file and attempting to import it in a[详细]
2023-03-28 01:08 分类:问答PyQT - How to implement Syntax Highlighting?
I want to write a little IDE for Cython using PyQT, but I don\'t have any idea how to implement Syntax Highlighting.[详细]
2023-03-27 13:42 分类:问答Cython, protected attributes
I need to modify a non-public attribute of an instance of C within another instance. cdef class C: cdef C superC[详细]
2023-03-26 20:10 分类:问答pyffmpeg segmentation fault on osx
I am having trouble installing and using pyffmpeg in OSX. (Snow Leopard) I tried different versions. Only configuration that seems to install is Python2.6, Cython 0.13 and pyffmpeg 2.0. (Python, ffmp[详细]
2023-03-26 18:45 分类:问答Cython overload Special Methods?
Is there a possibility to overload __cinit__ or __add__ ? Something like this: cdef class Vector(Base):[详细]
2023-03-26 14:59 分类:问答How to compile .c code from Cython with gcc
Now that I\'ve successfully installed Cython on Windows 7, I try to compile some Cython code using Cython, but gcc makes my life hard.[详细]
2023-03-26 12:31 分类:问答Cython won't compile on Windows 7 x64
I\'m struggling with installing Cython on Windows 7 x64. I downloaded and installed the automated MinGW installer. The created a distutils.cfg to the distutils folder with the following content:[详细]
2023-03-26 11:10 分类:问答Install mixture of extension module. pure python module and shared libraries with distutils
I am using cython for building an extension module. The module depends on an external shared library, which is found when the module is built. Further I have some pure Pyth开发者_StackOverflow中文版on[详细]
2023-03-25 03:14 分类:问答How to deal with a Cython ValueError
I\'m fairly new to Cython extension-types and puzzled with the following Cython-related ValueError that is thrown during runtime:[详细]
2023-03-24 04:10 分类:问答