From 0257ebc26a23f9cfc983e9740d9262a1381fd67c Mon Sep 17 00:00:00 2001 From: Elizaveta Shashkova Date: Mon, 12 Sep 2016 17:28:45 +0300 Subject: [PATCH] Python Console is broken for Remote interpreter with IPython 5 (PY-20732) Don't override this method here, call the original method of `sys.stdin` --- python/helpers/pydev/_pydev_bundle/pydev_console_utils.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/python/helpers/pydev/_pydev_bundle/pydev_console_utils.py b/python/helpers/pydev/_pydev_bundle/pydev_console_utils.py index 9d612005e9f3..4ad420baea9a 100644 --- a/python/helpers/pydev/_pydev_bundle/pydev_console_utils.py +++ b/python/helpers/pydev/_pydev_bundle/pydev_console_utils.py @@ -70,9 +70,6 @@ class BaseStdIn: # which is not something we want. return '\n' - def isatty(self): - return False # not really a file - def write(self, *args, **kwargs): pass # not available StdIn (but it can be expected to be in the stream interface)