mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
Make asyncio tests run on Windows.
This commit is contained in:
parent
27b7c7ebf1
commit
5ea7f93dcd
3 changed files with 12 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue