D2524: pycompat: add support for encoding argument to our wrapper

durin42 (Augie Fackler) phabricator at mercurial-scm.org
Thu Mar 1 20:53:55 EST 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG3396586abdc1: pycompat: add support for encoding argument to our wrapper (authored by durin42, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D2524?vs=6300&id=6316

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

AFFECTED FILES
  mercurial/pycompat.py

CHANGE DETAILS

diff --git a/mercurial/pycompat.py b/mercurial/pycompat.py
--- a/mercurial/pycompat.py
+++ b/mercurial/pycompat.py
@@ -224,8 +224,8 @@
     xrange = builtins.range
     unicode = str
 
-    def open(name, mode='r', buffering=-1):
-        return builtins.open(name, sysstr(mode), buffering)
+    def open(name, mode='r', buffering=-1, encoding=None):
+        return builtins.open(name, sysstr(mode), buffering, encoding)
 
     def _getoptbwrapper(orig, args, shortlist, namelist):
         """



To: durin42, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list