https://github.com/python/cpython
Raw File
Tip revision: 5a7e1e0a92622c605ab28c95b3dd61a21d285ad5 authored by Pablo Galindo on 11 July 2022, 15:24:37 UTC
Python 3.11.0b4
Tip revision: 5a7e1e0
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