mercurial/utils/procutil.py
changeset 45041 1053f878dd46
parent 45040 fd205a9c358a
child 45042 c88577199023
--- a/mercurial/utils/procutil.py	Sat Jul 04 12:15:41 2020 +0200
+++ b/mercurial/utils/procutil.py	Sat Jul 04 11:15:58 2020 +0200
@@ -37,10 +37,6 @@
 
 osutil = policy.importmod('osutil')
 
-stderr = pycompat.stderr
-stdin = pycompat.stdin
-stdout = pycompat.stdout
-
 
 def isatty(fp):
     try:
@@ -79,6 +75,10 @@
     return LineBufferedWrapper(stream)
 
 
+stderr = pycompat.stderr
+stdin = pycompat.stdin
+stdout = pycompat.stdout
+
 # glibc determines buffering on first write to stdout - if we replace a TTY
 # destined stdout with a pipe destined stdout (e.g. pager), we want line
 # buffering (or unbuffered, on Windows)