D7412: py3: use native string as fallback value for __file__ for consistency

martinvonz (Martin von Zweigbergk) phabricator at mercurial-scm.org
Thu Nov 14 22:43:34 EST 2019


Closed by commit rHGef43765c921d: py3: use native string as fallback value for __file__ for consistency (authored by martinvonz).
This revision was automatically updated to reflect the committed changes.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D7412?vs=18107&id=18135

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D7412/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D7412

AFFECTED FILES
  mercurial/utils/procutil.py

CHANGE DETAILS

diff --git a/mercurial/utils/procutil.py b/mercurial/utils/procutil.py
--- a/mercurial/utils/procutil.py
+++ b/mercurial/utils/procutil.py
@@ -289,7 +289,7 @@
         elif (
             not pycompat.iswindows
             and os.path.basename(
-                pycompat.fsencode(getattr(mainmod, '__file__', b''))
+                pycompat.fsencode(getattr(mainmod, '__file__', ''))
             )
             == b'hg'
         ):



To: martinvonz, #hg-reviewers, indygreg
Cc: mercurial-devel


More information about the Mercurial-devel mailing list