Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用的是 PyPy 和 shedskin。但是如何在 pypy 中导入 shedskin 生成的模块呢?谁能举个例子来帮助
简短的回答是不要。使用纯 Python,PyPy 的 JIT 通常可以从 shedskin 无论如何都可以编译的代码中获得很多意义。
更长的答案是 PyPy 有一个 CPython C API 兼容层(shedskin 用来创建扩展模块),但这就是它的本质 - 一个兼容层。它很慢,并不总是有效。我不是 100% 肯定 shedskin 会遵守规则,并且总是使用官方 API 而不是在内部戳。
干杯,菲亚尔