mercurial/util.py
changeset 36793 eca1051e6c22
parent 36791 30742c216abb
child 36832 6bdea0efdab5
--- a/mercurial/util.py	Tue Mar 06 03:05:49 2018 -0600
+++ b/mercurial/util.py	Tue Mar 06 02:28:59 2018 -0600
@@ -1430,13 +1430,19 @@
     global _hgexecutable
     _hgexecutable = path
 
-def _isstdout(f):
+def _testfileno(f, stdf):
     fileno = getattr(f, 'fileno', None)
     try:
-        return fileno and fileno() == sys.__stdout__.fileno()
+        return fileno and fileno() == stdf.fileno()
     except io.UnsupportedOperation:
         return False # fileno() raised UnsupportedOperation
 
+def isstdin(f):
+    return _testfileno(f, sys.__stdin__)
+
+def isstdout(f):
+    return _testfileno(f, sys.__stdout__)
+
 def shellenviron(environ=None):
     """return environ with optional override, useful for shelling out"""
     def py2shell(val):
@@ -1464,7 +1470,7 @@
         pass
     cmd = quotecommand(cmd)
     env = shellenviron(environ)
-    if out is None or _isstdout(out):
+    if out is None or isstdout(out):
         rc = subprocess.call(cmd, shell=True, close_fds=closefds,
                              env=env, cwd=cwd)
     else: