blob: e86a9b8c78d4c60e6a1c74460c75759440227fca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# no standard tests in this file, ignore
__test__ = False
if __name__ == '__main__':
import patcher_test_patching
import socket
patcher_test_patching.prepare()
print("importing {0} {1} {2} {3}".format(
patcher_test_patching,
socket,
patcher_test_patching.socket,
patcher_test_patching.urllib,
))
|