aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/ipython/py3/IPython/utils
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2024-07-13 15:44:43 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2024-07-13 15:55:40 +0300
commit585f8fd57a4ab83eca0890f5c05e959b79ef4ea4 (patch)
tree6714fb98ebef8ae413eaf223e3a7b29cf01cedc6 /contrib/python/ipython/py3/IPython/utils
parente12a75707d4c42a0081e951c9142db0bf460d802 (diff)
downloadydb-585f8fd57a4ab83eca0890f5c05e959b79ef4ea4.tar.gz
Intermediate changes
Diffstat (limited to 'contrib/python/ipython/py3/IPython/utils')
-rw-r--r--contrib/python/ipython/py3/IPython/utils/_process_emscripten.py1
-rw-r--r--contrib/python/ipython/py3/IPython/utils/_sysinfo.py2
-rw-r--r--contrib/python/ipython/py3/IPython/utils/io.py2
3 files changed, 3 insertions, 2 deletions
diff --git a/contrib/python/ipython/py3/IPython/utils/_process_emscripten.py b/contrib/python/ipython/py3/IPython/utils/_process_emscripten.py
index 05dcdc34d5f..bfc25184623 100644
--- a/contrib/python/ipython/py3/IPython/utils/_process_emscripten.py
+++ b/contrib/python/ipython/py3/IPython/utils/_process_emscripten.py
@@ -3,7 +3,6 @@
This file is only meant to be imported by process.py, not by end-users.
"""
-
from ._process_common import arg_split
diff --git a/contrib/python/ipython/py3/IPython/utils/_sysinfo.py b/contrib/python/ipython/py3/IPython/utils/_sysinfo.py
index e2e484d4935..14569760e1d 100644
--- a/contrib/python/ipython/py3/IPython/utils/_sysinfo.py
+++ b/contrib/python/ipython/py3/IPython/utils/_sysinfo.py
@@ -1,2 +1,2 @@
# GENERATED BY setup.py
-commit = "40a5a37ca"
+commit = "e0c8289d9"
diff --git a/contrib/python/ipython/py3/IPython/utils/io.py b/contrib/python/ipython/py3/IPython/utils/io.py
index cef4319f92c..abe30730ffa 100644
--- a/contrib/python/ipython/py3/IPython/utils/io.py
+++ b/contrib/python/ipython/py3/IPython/utils/io.py
@@ -75,6 +75,8 @@ class Tee(object):
if not self._closed:
self.close()
+ def isatty(self):
+ return False
def ask_yes_no(prompt, default=None, interrupt=None):
"""Asks a question and returns a boolean (y/n) answer.