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