From d09622a53b27642d1b7fc3b20c2a4560749e901f Mon Sep 17 00:00:00 2001
From: Oleksii Shevchuk
Date: Mon, 31 Oct 2016 13:23:25 +0200
Subject: [PATCH] Remove debug messages
---
pupy/modules/interactive_shell.py | 2 --
pupy/packages/all/pupyutils/safepopen.py | 3 ---
2 files changed, 5 deletions(-)
diff --git a/pupy/modules/interactive_shell.py b/pupy/modules/interactive_shell.py
index 9142e999..ebaf554c 100644
--- a/pupy/modules/interactive_shell.py
+++ b/pupy/modules/interactive_shell.py
@@ -201,8 +201,6 @@ class InteractiveShell(PupyModule):
interactive=True,
)
- print "DEBUG: {}".format(self.complete.is_set())
-
sys.stdout.write('\r\nREPL started. Ctrl-C will the module \r\n')
if self.client.is_windows():
diff --git a/pupy/packages/all/pupyutils/safepopen.py b/pupy/packages/all/pupyutils/safepopen.py
index 9feb3bca..75a7d9d4 100644
--- a/pupy/packages/all/pupyutils/safepopen.py
+++ b/pupy/packages/all/pupyutils/safepopen.py
@@ -102,9 +102,6 @@ class SafePopen(object):
'stdin': subprocess.PIPE
})
- print "DEBUG: {}, {}".format(
- self._popen_args, kwargs)
-
self._pipe = subprocess.Popen(
*self._popen_args,
**kwargs