From patchwork Fri Oct 13 14:06:38 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D1036: codemod: use pycompat.isposix From: phabricator X-Patchwork-Id: 24833 Message-Id: To: mercurial-devel@mercurial-scm.org Date: Fri, 13 Oct 2017 14:06:38 +0000 This revision was automatically updated to reflect the committed changes. Closed by commit rHG238abf65a8ad: codemod: use pycompat.isposix (authored by quark, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D1036?vs=2657&id=2684 REVISION DETAIL https://phab.mercurial-scm.org/D1036 AFFECTED FILES hgext/largefiles/lfutil.py mercurial/util.py mercurial/worker.py CHANGE DETAILS To: quark, #hg-reviewers, spectral Cc: mercurial-devel diff --git a/mercurial/worker.py b/mercurial/worker.py --- a/mercurial/worker.py +++ b/mercurial/worker.py @@ -53,7 +53,7 @@ raise error.Abort(_('number of cpus must be an integer')) return min(max(countcpus(), 4), 32) -if pycompat.osname == 'posix': +if pycompat.isposix: _startupcost = 0.01 else: _startupcost = 1e30 diff --git a/mercurial/util.py b/mercurial/util.py --- a/mercurial/util.py +++ b/mercurial/util.py @@ -313,7 +313,7 @@ return memoryview(sliceable)[offset:offset + length] return memoryview(sliceable)[offset:] -closefds = pycompat.osname == 'posix' +closefds = pycompat.isposix _chunksize = 4096 diff --git a/hgext/largefiles/lfutil.py b/hgext/largefiles/lfutil.py --- a/hgext/largefiles/lfutil.py +++ b/hgext/largefiles/lfutil.py @@ -83,7 +83,7 @@ home = encoding.environ.get('HOME') if home: return os.path.join(home, 'Library', 'Caches', longname) - elif pycompat.osname == 'posix': + elif pycompat.isposix: path = encoding.environ.get('XDG_CACHE_HOME') if path: return os.path.join(path, longname)