summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_coroutines.py
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-07-23 12:02:25 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2015-07-23 12:02:25 (GMT)
commit38d3876bfbeef65ec8ddc81cd88c739e6e8c3699 (patch)
tree7497de178d4be73112bfb94811df34d937c51b67 /Lib/test/test_coroutines.py
parent70559b5c2026ad7fc76996ef05571ac8e977ef26 (diff)
parent96ec934e755355cfc5af036db8641646b7ddb45e (diff)
downloadcpython-38d3876bfbeef65ec8ddc81cd88c739e6e8c3699.zip
cpython-38d3876bfbeef65ec8ddc81cd88c739e6e8c3699.tar.gz
cpython-38d3876bfbeef65ec8ddc81cd88c739e6e8c3699.tar.bz2
Merge 3.5 (Issue #24619)
Diffstat (limited to 'Lib/test/test_coroutines.py')
-rw-r--r--Lib/test/test_coroutines.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_coroutines.py b/Lib/test/test_coroutines.py
index 14682ca..10de856 100644
--- a/Lib/test/test_coroutines.py
+++ b/Lib/test/test_coroutines.py
@@ -330,6 +330,7 @@ class AsyncBadSyntaxTest(unittest.TestCase):
async def f():
async def g(): pass
await z
+ await = 1
self.assertTrue(inspect.iscoroutinefunction(f))