为什么 cythonizing 时 pxd 文件不是 found/seen?

Why is pxd file file not found/seen while cythonizing?

我正在尝试编译 运行 一个 Cython 扩展。同一目录下有三个文件:

main.pxd

cdef class Function:
    cdef object f

main.pyx

cdef class Function:
    def __init__(Function self, object f):
        if callable(f):
            self.f = f
        elif type(f) in [staticmethod,classmethod]:
            self.f = f
        else:
            raise TypeError("constructor argument must be callable")

setup.py

# import setuptools
from distutils.core import Extension, setup
from Cython.Build import cythonize

# define an extension that will be cythonized and compiled
ext = Extension(name="Do", sources=["main.pyx"])
setup(ext_modules=cythonize(ext,language_level=3))

我打电话给python setup.py build_ext --inplace。代码编译没有错误。但是,当我尝试在另一个 Python 模块中创建一个新的 Function 对象时,出现以下错误:

File "main.pyx", line 4, in Do.Function.__init__
AttributeError: 'Do.Function' object has no attribute 'f'

这告诉我编译器不知道 main.pxd。将 cimport main 添加到 main.pyx 的顶部会导致编译器错误。

如何让 Cython 看到 main.pxd,并将其包含在二进制文件中?

Python3.6,Cython 0.29.23,Windows10

更新:

Cython 文档有 an example。在共享扩展类型部分,有一个灌木丛 class 的代码。我将代码准确地复制到 main.pxd 和 main.pyx 中。我收到与以前类似的错误:'Do.Shrubbery' object has no attribute 'width'.

更新:

向 pxd 文件中的 cdef 添加了 public。出现同样的错误。

通过使扩展名与 pyx 和 pxd 文件的名称相同来解决问题。