https://github.com/python/cpython
Raw File
Tip revision: aad5f6a89125ad4529ab6ed5add693064351df1a authored by Pablo Galindo on 07 February 2023, 12:03:42 UTC
Python 3.10.10
Tip revision: aad5f6a
asdl.c
#include "Python.h"
#include "pycore_asdl.h"

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