bpo-32604: [_xxsubinterpreters] Add channel_send_wait(). by ericsnowcurrently · Pull Request #19829 · python/cpython · GitHub
Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Include/cpython/pystate.h
6 changes: 6 additions & 0 deletions Include/pythread.h
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,12 @@ PyAPI_FUNC(int) PyThread_tss_set(Py_tss_t *key, void *value);
PyAPI_FUNC(void *) PyThread_tss_get(Py_tss_t *key);
#endif /* New in 3.7 */

#ifndef Py_LIMITED_API
PyAPI_DATA(const PY_TIMEOUT_T) _PyThread_TIMEOUT_NOT_SET;
// This is for use with PyArg_ParseTupleAndKeywords():
PyAPI_FUNC(int) _PyThread_timeout_arg_converter(PyObject *, void *);
#endif

#ifdef __cplusplus
}
#endif
Expand Down
208 changes: 202 additions & 6 deletions Modules/_xxsubinterpretersmodule.c
Loading