From dc3d28cbb6209d52ef5a417dfc33c4fcedd35859 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Tue, 2 Apr 2019 17:04:19 +0200 Subject: [PATCH] Re-enable Windows support It works well enough now with the recent fixes and a modern Python. --- websockify/websockifyserver.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/websockify/websockifyserver.py b/websockify/websockifyserver.py index 9d9cfb9d..0ec3bb0d 100644 --- a/websockify/websockifyserver.py +++ b/websockify/websockifyserver.py @@ -40,9 +40,6 @@ if sys.platform == 'win32': # make sockets pickle-able/inheritable import multiprocessing.reduction - # the multiprocesssing module behaves much differently on Windows, - # and we have yet to fix all the bugs - sys.exit("Windows is not supported at this time") from websockify.websocket import WebSocket, WebSocketWantReadError, WebSocketWantWriteError from websockify.websocketserver import WebSocketRequestHandlerMixIn