我很想为 Python 3.2 编译Yenc。我注意到 gcc 抱怨了一个未声明的函数,所以我根据文档PyString_Type
将其替换为替换。PyBytes_Type
然而,gcc 也抱怨了一个名为PyFile_Type
. 我google了一下,发现:
Python 3.x replaces the PyFile_Type extension type
with an abstract interface and specific implementation types.
Unfortunately it doesn't make any of this directly available
with a C level api.
我绝不是 C 程序员,这让我无法解决这个问题。我应该怎么做才能解决这个问题?
谢谢!