Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
allendowney
GitHub Repository: allendowney/cpython
Path: blob/main/Python/asdl.c
12 views
1
#include "Python.h"
2
#include "pycore_asdl.h"
3
4
GENERATE_ASDL_SEQ_CONSTRUCTOR(generic, void*);
5
GENERATE_ASDL_SEQ_CONSTRUCTOR(identifier, PyObject*);
6
GENERATE_ASDL_SEQ_CONSTRUCTOR(int, int);
7
8