diff options
author | Yury Selivanov <yury@magic.io> | 2016-09-08 22:01:51 -0700 |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2016-09-08 22:01:51 -0700 |
commit | eb6364557f9bc4e6be29bb8a8f43308a0e080aba (patch) | |
tree | 05b7aed24dce255be67e7a60c021c319d13f43c9 /Lib/dis.py | |
parent | regrtest: log FS and locale encodings (diff) | |
download | cpython-eb6364557f9bc4e6be29bb8a8f43308a0e080aba.tar.gz cpython-eb6364557f9bc4e6be29bb8a8f43308a0e080aba.tar.bz2 cpython-eb6364557f9bc4e6be29bb8a8f43308a0e080aba.zip |
Issue #28003: Implement PEP 525 -- Asynchronous Generators.
Diffstat (limited to 'Lib/dis.py')
-rw-r--r-- | Lib/dis.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/dis.py b/Lib/dis.py index 59886f1e37e..556d84eb4a2 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): |