[Python-checkins] cpython (merge 3.5 -> default): Merge 3.5

yury.selivanov python-checkins at python.org
Wed Dec 16 20:41:45 EST 2015


https://hg.python.org/cpython/rev/deb62ffe8e51
changeset:   99600:deb62ffe8e51
parent:      99597:37c4e7463b18
parent:      99599:448d5be62d46
user:        Yury Selivanov <yselivanov at sprymix.com>
date:        Wed Dec 16 20:41:39 2015 -0500
summary:
  Merge 3.5

files:
  Lib/test/test_asyncio/test_tasks.py |  4 ++++
  1 files changed, 4 insertions(+), 0 deletions(-)


diff --git a/Lib/test/test_asyncio/test_tasks.py b/Lib/test/test_asyncio/test_tasks.py
--- a/Lib/test/test_asyncio/test_tasks.py
+++ b/Lib/test/test_asyncio/test_tasks.py
@@ -2212,6 +2212,10 @@
         self.loop = asyncio.new_event_loop()
         asyncio.set_event_loop(None)
 
+    def tearDown(self):
+        self.loop.close()
+        self.loop = None
+
     def test_sleep_zero(self):
         result = 0
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list