Skip to content

Commit

Permalink
Add one more missed flag: CO_ASYNC_GENERATOR (#505)
Browse files Browse the repository at this point in the history
* Support for JUMP_BACKWARD

* Add missed flag CO_ASYNC_GENERATOR

* Revert "Support for JUMP_BACKWARD"

This reverts commit 81543ec.
  • Loading branch information
greenozon authored Aug 5, 2024
1 parent c925daf commit cb32b58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pycdas.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
static const char* flag_names[] = {
"CO_OPTIMIZED", "CO_NEWLOCALS", "CO_VARARGS", "CO_VARKEYWORDS",
"CO_NESTED", "CO_GENERATOR", "CO_NOFREE", "CO_COROUTINE",
"CO_ITERABLE_COROUTINE", "<0x200>", "<0x400>", "<0x800>",
"CO_ITERABLE_COROUTINE", "CO_ASYNC_GENERATOR", "<0x400>", "<0x800>",
"CO_GENERATOR_ALLOWED", "<0x2000>", "<0x4000>", "<0x8000>",
"<0x10000>", "CO_FUTURE_DIVISION", "CO_FUTURE_ABSOLUTE_IMPORT", "CO_FUTURE_WITH_STATEMENT",
"CO_FUTURE_PRINT_FUNCTION", "CO_FUTURE_UNICODE_LITERALS", "CO_FUTURE_BARRY_AS_BDFL",
Expand Down

0 comments on commit cb32b58

Please sign in to comment.