Commit 882b87dd authored by Carl Witty's avatar Carl Witty

PyObject_Hash returns long, not int

parent e4d09f3d
...@@ -20,7 +20,7 @@ builtin_function_table = [ ...@@ -20,7 +20,7 @@ builtin_function_table = [
('getattr', "OO", "O", "PyObject_GetAttr"), ('getattr', "OO", "O", "PyObject_GetAttr"),
('getattr3', "OOO", "O", "__Pyx_GetAttr3", "getattr"), ('getattr3', "OOO", "O", "__Pyx_GetAttr3", "getattr"),
('hasattr', "OO", "b", "PyObject_HasAttr"), ('hasattr', "OO", "b", "PyObject_HasAttr"),
('hash', "O", "i", "PyObject_Hash"), ('hash', "O", "l", "PyObject_Hash"),
#('hex', "", "", ""), #('hex', "", "", ""),
#('id', "", "", ""), #('id', "", "", ""),
#('input', "", "", ""), #('input', "", "", ""),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment