Skip to content
Merged
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: 2 additions & 2 deletions Modules/_asynciomodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ _is_coroutine(PyObject *coro)
return is_res_true;
}

if (PySet_Size(iscoroutine_typecache) < 100) {
if (PySet_GET_SIZE(iscoroutine_typecache) < 100) {
/* Just in case we don't want to cache more than 100
positive types. That shouldn't ever happen, unless
someone stressing the system on purpose.
Expand Down Expand Up @@ -3023,7 +3023,7 @@ _asyncio__leave_task_impl(PyObject *module, PyObject *loop, PyObject *task)


static void
module_free_freelists()
module_free_freelists(void)
{
PyObject *next;
PyObject *current;
Expand Down