https://github.com/python/cpython
Raw File
Tip revision: 317314165a0b98c851c7774150f8121ad7e99254 authored by Pablo Galindo on 31 May 2021, 11:29:21 UTC
Python 3.10.0b2
Tip revision: 3173141
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