标签: python python-2.7 python-3.x pygame
print ( type(pygame.event.Event) )
在python shell中返回;
<class 'builtin_function_or_method'>
AFAIK,内置函数是python定义的唯一函数。
答案 0 :(得分:1)
这是因为pygame.event.Event会被投放到PyCFunction,但pygame.Rect会被定义为类型。
pygame.event.Event
PyCFunction
pygame.Rect