https://github.com/python/cpython
Raw File
Tip revision: 41cb07120b7792eac6413b0c56256a25e9b14e5d authored by Pablo Galindo on 05 August 2022, 14:44:15 UTC
Python 3.11.0rc1
Tip revision: 41cb071
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