Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update Objects/genobject.c
Co-Authored-By: Victor Stinner <vstinner@python.org>
  • Loading branch information
petdance and vstinner authored Mar 4, 2020
commit 0c6f3a70f94306c422ec2fd0eeb64090eb0f9683
2 changes: 1 addition & 1 deletion Objects/genobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -1216,7 +1216,7 @@ static PyAsyncGenASend *ag_asend_freelist[_PyAsyncGen_MAXFREELIST];
static int ag_asend_freelist_free = 0;

#define _PyAsyncGenWrappedValue_CheckExact(o) \
Py_IS_TYPE((o), &_PyAsyncGenWrappedValue_Type)
Py_IS_TYPE(o, &_PyAsyncGenWrappedValue_Type)

#define PyAsyncGenASend_CheckExact(o) \
Py_IS_TYPE((o), &_PyAsyncGenASend_Type)
Comment thread
petdance marked this conversation as resolved.
Outdated
Expand Down