D3787: py3: encode sys.argv to bytes using .encode()

pulkit (Pulkit Goyal) phabricator at mercurial-scm.org
Mon Jun 18 08:33:23 EDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHGbf953d218a91: py3: encode sys.argv to bytes using .encode() (authored by pulkit, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D3787?vs=9158&id=9170

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

AFFECTED FILES
  tests/test-import-context.t
  tests/test-patch-offset.t

CHANGE DETAILS

diff --git a/tests/test-patch-offset.t b/tests/test-patch-offset.t
--- a/tests/test-patch-offset.t
+++ b/tests/test-patch-offset.t
@@ -8,7 +8,7 @@
   > fp = open(path, 'wb')
   > for pattern in patterns:
   >     count = int(pattern[0:-1])
-  >     char = pattern[-1] + '\n'
+  >     char = pattern[-1].encode('utf8') + b'\n'
   >     fp.write(char*count)
   > fp.close()
   > EOF
diff --git a/tests/test-import-context.t b/tests/test-import-context.t
--- a/tests/test-import-context.t
+++ b/tests/test-import-context.t
@@ -10,7 +10,7 @@
   > fp = open(path, 'wb')
   > for i, pattern in enumerate(patterns):
   >     count = int(pattern[0:-1])
-  >     char = pattern[-1] + '\n'
+  >     char = pattern[-1].encode('utf8') + b'\n'
   >     if not lasteol and i == len(patterns) - 1:
   >         fp.write((char*count)[:-1])
   >     else:



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


More information about the Mercurial-devel mailing list