diff options
Diffstat (limited to 'Lib/dis.py')
-rw-r--r-- | Lib/dis.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/dis.py b/Lib/dis.py index d215bc59e4..af37cdf0c6 100644 --- a/Lib/dis.py +++ b/Lib/dis.py @@ -84,6 +84,8 @@ COMPILER_FLAG_NAMES = { 16: "NESTED", 32: "GENERATOR", 64: "NOFREE", + 128: "COROUTINE", + 256: "ITERABLE_COROUTINE", } def pretty_flags(flags): |