https://github.com/python/cpython
Raw File
Tip revision: 2e49bd06c5ffab7d154042da4b5bcd5ae6e4220b authored by Pablo Galindo on 05 April 2022, 19:52:24 UTC
Python 3.11.0a7
Tip revision: 2e49bd0
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