Kaydet (Commit) b14ac8c2 authored tarafından Antoine Pitrou's avatar Antoine Pitrou

Save and restore the global asyncore.socket_map, and warn if a test modified it

üst ed986368
......@@ -814,7 +814,7 @@ class saved_test_environment:
resources = ('sys.argv', 'cwd', 'sys.stdin', 'sys.stdout', 'sys.stderr',
'os.environ', 'sys.path', 'sys.path_hooks', '__import__',
'warnings.filters')
'warnings.filters', 'asyncore.socket_map')
def get_sys_argv(self):
return id(sys.argv), sys.argv, sys.argv[:]
......@@ -872,6 +872,15 @@ class saved_test_environment:
warnings.filters = saved_filters[1]
warnings.filters[:] = saved_filters[2]
def get_asyncore_socket_map(self):
asyncore = sys.modules.get('asyncore')
return asyncore and asyncore.socket_map or {}
def restore_asyncore_socket_map(self, saved_map):
asyncore = sys.modules.get('asyncore')
if asyncore is not None:
asyncore.socket_map.clear()
asyncore.socket_map.update(saved_map)
def resource_info(self):
for name in self.resources:
method_suffix = name.replace('.', '_')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment