Close #19297: fix resource warnings in test_asyncio. Patch by Vajrasky Kok.

This commit is contained in:
Antoine Pitrou 2013-10-20 23:26:23 +02:00
parent 5121debebf
commit a7a150c7c6

View file

@ -126,6 +126,7 @@ def app(environ, start_response):
yield httpd yield httpd
finally: finally:
httpd.shutdown() httpd.shutdown()
httpd.server_close()
server_thread.join() server_thread.join()