Skip to content

Commit 84fd32b

Browse files
hack to work on pypy by https://github.com/Guilherme32 from #39
1 parent 0e02f9d commit 84fd32b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

raylib/pyray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def func(self, *args):
3333
for name, attr in getmembers(rl):
3434
#print(name, attr)
3535
uname = inflection.underscore(name).replace('3_d','_3d').replace('2_d','_2d')
36-
if isbuiltin(attr):
36+
if isbuiltin(attr) or str(type(attr)) == "<class '_cffi_backend.__FFIFunctionWrapper'>":
3737
#print(attr.__call__)
3838
#print(attr.__doc__)
3939
#print(attr.__text_signature__)

0 commit comments

Comments
 (0)