https://github.com/python/cpython
Raw File
Tip revision: cc115e5bf66abe909964be5880c96194d9424df9 authored by Pablo Galindo on 02 August 2021, 19:06:40 UTC
Python 3.10.0rc1
Tip revision: cc115e5
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