You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compiling under xcode for iOS, it throughs PyClass_New reference not found error.
After diggin' around for a while, there is no PyClass_New definition in Python3 actually.
Also there are other deprecated python3 APIs need to be nested in #if PYTHON2 condition.
PyLong_GetMax(not exists)
PyObject_GC_New(name error, should be _PyObject_GC_New)
Environment
Details
Compiling under xcode for iOS, it throughs PyClass_New reference not found error.
After diggin' around for a while, there is no PyClass_New definition in Python3 actually.
Also there are other deprecated python3 APIs need to be nested in #if PYTHON2 condition.
PyLong_GetMax(not exists)
PyObject_GC_New(name error, should be _PyObject_GC_New)
The text was updated successfully, but these errors were encountered: