Skip to content
Advertisement

Tag: cythonize

Cython class AttributeError

I have started to experiment with Cython and ran into the following problem. Consider the following class representing a vertex in the 3D space: Now I try to create an object from the Python console: which works fine. However, when I’m trying to access the class attributes, I’m getting an AttributeError: Any ideas why this could happen? Answer By default

Advertisement