# HG changeset patch # User Adrian Buehlmann # Date 1311323705 -7200 # Node ID 5b39503157fd211303772a5e30550f3f2f82ca83 # Parent 570ea0259b0a0d923a0b26470ac0594b8c777db5 util: move "default" hidewindow to posix.py There is a hidewindow in win32.py, which we get via windows.py diff -r 570ea0259b0a -r 5b39503157fd mercurial/posix.py --- a/mercurial/posix.py Fri Jul 22 10:31:56 2011 +0200 +++ b/mercurial/posix.py Fri Jul 22 10:35:05 2011 +0200 @@ -340,3 +340,11 @@ def lookupreg(key, name=None, scope=None): return None + +def hidewindow(): + """Hide current shell window. + + Used to hide the window opened when starting asynchronous + child process under Windows, unneeded on other systems. + """ + pass diff -r 570ea0259b0a -r 5b39503157fd mercurial/util.py --- a/mercurial/util.py Fri Jul 22 10:31:56 2011 +0200 +++ b/mercurial/util.py Fri Jul 22 10:35:05 2011 +0200 @@ -475,14 +475,6 @@ return _("filename ends with '%s', which is not allowed " "on Windows") % t -def hidewindow(): - """Hide current shell window. - - Used to hide the window opened when starting asynchronous - child process under Windows, unneeded on other systems. - """ - pass - if os.name == 'nt': checkosfilename = checkwinfilename from windows import *