Staging
v0.5.1
https://github.com/python/cpython
Revision caff2934f46510920a6169e192707d59e9c55f6b authored by Raúl Cumplido on 21 October 2020, 19:05:48 UTC, committed by GitHub on 21 October 2020, 19:05:48 UTC


While translating the following document to Spanish we found there is a grammar issue on the original documentation.
1 parent c60394c
Raw File
Tip revision: caff2934f46510920a6169e192707d59e9c55f6b authored by Raúl Cumplido on 21 October 2020, 19:05:48 UTC
bpo-41959: Fix grammar around class asyncio.MultiLoopChildWatcher text (GH-22580)
Tip revision: caff293
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