Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 53e6230 + 09e6058 commit 27be130Copy full SHA for 27be130
1 file changed
Lib/asyncio/coroutines.py
@@ -144,6 +144,14 @@ def gi_code(self):
144
145
__await__ = __iter__ # make compatible with 'await' expression
146
147
+ @property
148
+ def gi_yieldfrom(self):
149
+ return self.gen.gi_yieldfrom
150
+
151
152
+ def cr_await(self):
153
+ return self.gen.cr_await
154
155
@property
156
def cr_running(self):
157
return self.gen.cr_running
0 commit comments