cpython: f7688db81753 (original) (raw)

Mercurial > cpython

changeset 104204:f7688db81753 3.5

Issue #28283: Remove flaky test test_sock_connect_sock_write_race again It was added back in 53a578f51f21. [#28283]

Berker Peksag berker.peksag@gmail.com
date Sat, 01 Oct 2016 04:16:59 +0300
parents 258436eecb51
children 0fe04467c4b5 36d37ff6c236
files Lib/test/test_asyncio/test_selector_events.py
diffstat 1 files changed, 0 insertions(+), 86 deletions(-)[+] [-] Lib/test/test_asyncio/test_selector_events.py 86

line wrap: on

line diff

--- a/Lib/test/test_asyncio/test_selector_events.py +++ b/Lib/test/test_asyncio/test_selector_events.py @@ -2,8 +2,6 @@ import errno import socket -import threading -import time import unittest from unittest import mock try: @@ -1786,89 +1784,5 @@ class SelectorDatagramTransportTests(tes 'Fatal error on transport\nprotocol:.\ntransport:.'), exc_info=(ConnectionRefusedError, MOCK_ANY, MOCK_ANY)) - -class SelectorLoopFunctionalTests(unittest.TestCase): -

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

- - if name == 'main': unittest.main()