Skip to content

Commit

Permalink
Merge pull request #30 from MichaelAz/system_error
Browse files Browse the repository at this point in the history
Fix issue #28
  • Loading branch information
rgalanakis committed Jul 19, 2014
2 parents faf208d + 642bdcd commit a787883
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions goless/backends.py
Expand Up @@ -120,6 +120,10 @@ def _make_gevent():
import gevent.hub import gevent.hub
import gevent.queue import gevent.queue
import greenlet import greenlet

# We're importing socket to handle an known error in libev on Windows
# See rgalanakis/goless#28 and surfly/gevent#459
import socket


deadlock_errtypes = (gevent.hub.LoopExit,) deadlock_errtypes = (gevent.hub.LoopExit,)
if _os.name == 'nt': if _os.name == 'nt':
Expand Down

0 comments on commit a787883

Please sign in to comment.