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

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


https://hg.python.org/cpython/rev/448d5be62d46
changeset:   99599:448d5be62d46
branch:      3.5
parent:      99596:d56cfe234627
parent:      99598:d450b88db7f5
user:        Yury Selivanov <yselivanov at sprymix.com>
date:        Wed Dec 16 20:41:25 2015 -0500
summary:
  Merge 3.4

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