Commit ead2f5a0 authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #18637: Fixed an error in _PyNode_SizeOf declaration.

Patch by Roumen Petrov.
parent f9b2aa2e
......@@ -20,7 +20,7 @@ PyAPI_FUNC(node *) PyNode_New(int type);
PyAPI_FUNC(int) PyNode_AddChild(node *n, int type,
char *str, int lineno, int col_offset);
PyAPI_FUNC(void) PyNode_Free(node *n);
Py_ssize_t _PyNode_SizeOf(node *n);
PyAPI_FUNC(Py_ssize_t) _PyNode_SizeOf(node *n);
/* Node access functions */
#define NCH(n) ((n)->n_nchildren)
......
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