From eb6364557f9bc4e6be29bb8a8f43308a0e080aba Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Thu, 8 Sep 2016 22:01:51 -0700 Subject: Issue #28003: Implement PEP 525 -- Asynchronous Generators. --- Lib/dis.py | 1 + 1 file changed, 1 insertion(+) (limited to 'Lib/dis.py') diff --git a/Lib/dis.py b/Lib/dis.py index 59886f1e37..556d84eb4a 100644 --- a/Lib/dis.py +++ b/Lib/dis.py @@ -87,6 +87,7 @@ COMPILER_FLAG_NAMES = { 64: "NOFREE", 128: "COROUTINE", 256: "ITERABLE_COROUTINE", + 512: "ASYNC_GENERATOR", } def pretty_flags(flags): -- cgit v1.2.1