https://github.com/python/cpython
Raw File
Tip revision: 8d32a5c8c4e9c90b0a21e8b2fa0cd567465ced2b authored by Pablo Galindo on 06 May 2022, 22:55:59 UTC
Update the SOURCE_URI in pyspecific.py to point to the new branch
Tip revision: 8d32a5c
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