diff mercurial/scmutil.py @ 30309:4b1af1c867fa

scmutil: move util.termwidth() I'm going to get rid of sys.stderr|out|in references from posix.termwidth(). In order to do that, termwidth() needs to take a ui, but functions in util.py shouldn't depend on a ui object. So moves termwidth() to scmutil.py.
author Yuya Nishihara <yuya@tcha.org>
date Thu, 20 Oct 2016 21:38:44 +0900
parents af7c60988f6e
children 365812902904
line wrap: on
line diff
--- a/mercurial/scmutil.py	Sun Nov 06 00:37:50 2016 -0700
+++ b/mercurial/scmutil.py	Thu Oct 20 21:38:44 2016 +0900
@@ -40,6 +40,7 @@
 
 systemrcpath = scmplatform.systemrcpath
 userrcpath = scmplatform.userrcpath
+termwidth = scmplatform.termwidth
 
 class status(tuple):
     '''Named tuple with a list of files per status. The 'deleted', 'unknown'