From 251c5e2ba0e85103c55cf31026739b2e7e9d4b90 Mon Sep 17 00:00:00 2001
From: Timotej Lazar <timotej.lazar@araneo.org>
Date: Wed, 16 Sep 2015 16:10:59 +0200
Subject: Implement async. comm. with Python interpreter

Creating, destroying and communicationg with the interpreter subprocess
is now handled by a thread attached to PythonSession. Interpreter is
sandboxed using libseccomp.
---
 web/main.js | 5 -----
 1 file changed, 5 deletions(-)

(limited to 'web')

diff --git a/web/main.js b/web/main.js
index c4c8691..03e9dad 100644
--- a/web/main.js
+++ b/web/main.js
@@ -137,11 +137,6 @@ var guiHandlers = {
         sendDataToPython(message).then(session.send, session.end).done();
     },
 
-    'python_pull': function actionPythonPull(session, message) {
-        logger.debug('Received python_pull from GUI');
-        sendDataToPython(message).then(session.send, session.end).done();
-    },
-
     'hint': function actionHint(session, message) {
         logger.debug('Received hint from GUI');
         sendDataToPython(message).then(session.send, session.end).done();
-- 
cgit v1.2.1