Staging
v0.8.1
https://github.com/python/cpython
Raw File
Tip revision: 91fd1599358a1764e805f7ccfb6a8cb2ad558b7e authored by Benjamin Peterson on 10 May 2015, 17:13:10 UTC
update pydoc-topics
Tip revision: 91fd159
asdl.c
#include "Python.h"
#include "asdl.h"

GENERATE_ASDL_SEQ_CONSTRUCTOR(generic, void*);
GENERATE_ASDL_SEQ_CONSTRUCTOR(identifier, PyObject*);
GENERATE_ASDL_SEQ_CONSTRUCTOR(int, int);
back to top