如何在PYMAJOR_VERSION上进行编译?

时间:2015-05-01 16:53:20

标签: cython

这不会编译。

from cpython.version cimport PY_MAJOR_VERSION
# ...

IF PY_MAJOR_VERSION < 3:
    def __getslice__(self, long i, long j):
        return self._arr[i:j]

随着......

jnius/jnius_nativetypes.pxi:65:19: Error in compile-time expression: TypeError: unorderable types: NoneType() < int()

还有什么选择?

0 个答案:

没有答案