Staging
v0.8.1
https://github.com/python/cpython
Revision d6238ba82d07e8e0783b692f37dc4b7c8617294b authored by Akashkumar D Khunt on 30 October 2020, 06:03:51 UTC, committed by GitHub on 30 October 2020, 06:03:51 UTC
1 parent 8e409ce
Raw File
Tip revision: d6238ba82d07e8e0783b692f37dc4b7c8617294b authored by Akashkumar D Khunt on 30 October 2020, 06:03:51 UTC
bpo-42172: Correct typo for test_socket.py (GH-23013)
Tip revision: d6238ba
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