8000 bpo-33562: Check for asyncio global setting changes in tests by brettcannon · Pull Request #6958 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-33562: Check for asyncio global setting changes in tests #6958

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Alphabetize the imports in test_socket
  • Loading branch information
brettcannon committed May 17, 2018
commit d90c8ae2a93e611761408bae4d7426d2db377ffd
44 changes: 22 additions & 22 deletions Lib/test/test_socket.py
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
import unittest
from test import support

import _thread as thread
import array
import contextlib
import errno
try:
import fcntl
except ImportError:
fcntl = None
import io
import itertools
import socket
import select
import tempfile
import time
import traceback
import queue
import sys
import os
import array
import contextlib
from weakref import proxy
import signal
import math
try:
import multiprocessing
except ImportError:
multiprocessing = False
import os
import pickle
import struct
import queue
import random
import select
import shutil
import signal
import socket
import string
import _thread as thread
import struct
import sys
import tempfile
import threading
try:
import multiprocessing
except ImportError:
multiprocessing = False
try:
import fcntl
except ImportError:
fcntl = None
import time
import traceback
from weakref import proxy

HOST = support.HOST
MSG = 'Michael Gilfix was here\u1234\r\n'.encode('utf-8') ## test unicode string and carriage return
Expand Down
0