Staging
v0.5.1
https://github.com/python/cpython
Revision eb7594f85741ef809b1ee337ee3431df20e6f8bb authored by pxinwr on 08 December 2020, 23:18:37 UTC, committed by GitHub on 08 December 2020, 23:18:37 UTC
1 parent fe6e5e7
Raw File
Tip revision: eb7594f85741ef809b1ee337ee3431df20e6f8bb authored by pxinwr on 08 December 2020, 23:18:37 UTC
bpo-41443: Add more attribute checking in test_posix (GH-21688)
Tip revision: eb7594f
asdl.c
#include "Python.h"
#include "asdl.h"

GENERATE_ASDL_SEQ_CONSTRUCTOR(generic, void*);
GENERATE_ASDL_SEQ_CONSTRUCTOR(identifier, PyObject*);
GENERATE_ASDL_SEQ_CONSTRUCTOR(int, int);
back to top