Windows: Use 32-bit distribution of python
This commit is contained in:
@@ -163,9 +163,11 @@ class BaseServer(object):
|
||||
def stop_accepting(self):
|
||||
if self._watcher is not None:
|
||||
self._watcher.stop()
|
||||
self._watcher.close()
|
||||
self._watcher = None
|
||||
if self._timer is not None:
|
||||
self._timer.stop()
|
||||
self._timer.close()
|
||||
self._timer = None
|
||||
|
||||
def do_handle(self, *args):
|
||||
@@ -398,5 +400,5 @@ def _parse_address(address):
|
||||
def parse_address(address):
|
||||
try:
|
||||
return _parse_address(address)
|
||||
except ValueError as ex:
|
||||
except ValueError as ex: # pylint:disable=try-except-raise
|
||||
raise ValueError('Failed to parse address %r: %s' % (address, ex))
|
||||
|
||||
Reference in New Issue
Block a user