Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Cinder's awaiter flag to not conflict with version tag
Summary: `Py_TPFLAGS_HAVE_VERSION_TAG (1UL << 18)` is defined on line 575 as `(1UL << 18)` so we can't use 18 here. Change to 21 which is unused. This is causing a crash when subclassing a Cython class D60555759 and trying to copy the non-existent async methods here: https://www.internalfb.com/code/fbsource/[03a8cbcbe4d4f8d35cf0837de169925d564d479f]/third-party/python/3.12/Objects/typeobject.c?lines=3352 Reviewed By: yulong-zhang-1 Differential Revision: D60627205 fbshipit-source-id: d3d5998b39df88d9aa03c04539f7adfdf52f0121
- Loading branch information