We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4387373 commit 2a7de75Copy full SHA for 2a7de75
accelerate/src/vbo.pyx
@@ -4,6 +4,10 @@ import ctypes, weakref
4
from OpenGL_accelerate.formathandler cimport FormatHandler
5
from OpenGL import error
6
from OpenGL._bytes import bytes,unicode
7
+try:
8
+ long = long
9
+except NameError as err:
10
+ long = int
11
12
cdef extern from "Python.h":
13
cdef void Py_XINCREF( object )
0 commit comments