Make asyncio tests run on Windows.

This commit is contained in:
Guido van Rossum 2013-10-17 14:23:17 -07:00
parent 27b7c7ebf1
commit 5ea7f93dcd
3 changed files with 12 additions and 2 deletions

View file

@ -1,9 +1,12 @@
"""Tests for streams.py."""
import gc
import ssl
import unittest
import unittest.mock
try:
import ssl
except ImportError:
ssl = None
from asyncio import events
from asyncio import streams