# HG changeset patch
# User Pulkit Goyal <7895pul...@gmail.com>
# Date 1482002525 -19800
#      Sun Dec 18 00:52:05 2016 +0530
# Node ID e737d795d5813e66ce7a57a74fa30f52f6eb4ec4
# Parent  ffdca92474e806c84d0e3383768b3011202d650e
py3: have a bytes version of sys.platform

sys.platform returns unicodes on Python 3. This patch adds up
pycompat.sysplatform which returns bytes.

diff -r ffdca92474e8 -r e737d795d581 mercurial/pycompat.py
--- a/mercurial/pycompat.py     Sun Dec 18 00:44:21 2016 +0530
+++ b/mercurial/pycompat.py     Sun Dec 18 00:52:05 2016 +0530
@@ -50,6 +50,7 @@
     # os.getcwd() on Python 3 returns string, but it has os.getcwdb() which
     # returns bytes.
     getcwd = os.getcwdb
+    sysplatform = sys.platform.encode('ascii')
 
     # TODO: .buffer might not exist if std streams were replaced; we'll need
     # a silly wrapper to make a bytes stream backed by a unicode one.
@@ -153,6 +154,7 @@
     stdout = sys.stdout
     stderr = sys.stderr
     sysargv = sys.argv
+    sysplatform = sys.platform
     getcwd = os.getcwd
 
 stringio = io.StringIO
_______________________________________________
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel

Reply via email to