diff options
Diffstat (limited to 'Lib/test/test_logging.py')
-rw-r--r-- | Lib/test/test_logging.py | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index 54049d2fb3..eee2ed0c19 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -773,14 +773,7 @@ class TestSMTPServer(smtpd.SMTPServer): :func:`select` or :func:`poll` call by :func:`asyncore.loop`. """ - try: - asyncore.loop(poll_interval, map=self._map) - except OSError: - # On FreeBSD 8, closing the server repeatably - # raises this error. We swallow it if the - # server has been closed. - if self.connected or self.accepting: - raise + asyncore.loop(poll_interval, map=self._map) def stop(self, timeout=None): """ |