https://github.com/python/cpython
Raw File
Tip revision: f37715396786fd4055f5891aa16774ede26392ff authored by Pablo Galindo on 06 June 2022, 11:52:40 UTC
Python 3.10.5
Tip revision: f377153
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