D2290: printenv: port to python3

durin42 (Augie Fackler) phabricator at mercurial-scm.org
Sat Feb 17 04:54:01 EST 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHGcdf4eecddbe5: printenv: port to python3 (authored by durin42, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D2290?vs=5795&id=5802

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

AFFECTED FILES
  tests/printenv.py

CHANGE DETAILS

diff --git a/tests/printenv.py b/tests/printenv.py
--- a/tests/printenv.py
+++ b/tests/printenv.py
@@ -35,7 +35,7 @@
 
 # variables with empty values may not exist on all platforms, filter
 # them now for portability sake.
-env = [(k, v) for k, v in os.environ.iteritems()
+env = [(k, v) for k, v in os.environ.items()
        if k.startswith("HG_") and v]
 env.sort()
 



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


More information about the Mercurial-devel mailing list