blob: adc7eb9e59abdd91c86f173eb33f17b8e58dd94c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import os
__test__ = False
shared = None
if os.environ.get('eventlet_test_in_progress') == 'yes':
# pyopenssl imported urllib before we could patch it
# we can ensure this shared module was not imported
# https://github.com/eventlet/eventlet/issues/362
import tests.patcher.shared_import_socket as shared
_ = shared # mask unused import error
|