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/types.py | |
parent | b96ef55d493aded2dea18b0208070bdfab4ceb73 (diff) | |
download | cpython-eb6364557f9bc4e6be29bb8a8f43308a0e080aba.tar.gz cpython-eb6364557f9bc4e6be29bb8a8f43308a0e080aba.zip |
Issue #28003: Implement PEP 525 -- Asynchronous Generators.
Diffstat (limited to 'Lib/types.py')
-rw-r--r-- | Lib/types.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/types.py b/Lib/types.py index 48891cd3f60..d8d84709e1b 100644 --- a/Lib/types.py +++ b/Lib/types.py @@ -24,6 +24,11 @@ _c = _c() CoroutineType = type(_c) _c.close() # Prevent ResourceWarning +async def _ag(): + yield +_ag = _ag() +AsyncGeneratorType = type(_ag) + class _C: def _m(self): pass MethodType = type(_C()._m) |