D12244: tests: remove last references to PYTHON3
indygreg (Gregory Szorc)
phabricator at mercurial-scm.org
Wed Mar 2 00:43:59 UTC 2022
indygreg created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
This removes the last references to PYTHON3.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D12244
AFFECTED FILES
tests/run-tests.py
CHANGE DETAILS
diff --git a/tests/run-tests.py b/tests/run-tests.py
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -163,7 +163,6 @@
)
sys.exit(70) # EX_SOFTWARE from `man 3 sysexit`
-PYTHON3 = True
xrange = range # we use xrange in one place, and we'd rather not use range
@@ -1464,7 +1463,7 @@
# This has the same effect as Py_LegacyWindowsStdioFlag in exewrapper.c,
# but this is needed for testing python instances like dummyssh,
# dummysmtpd.py, and dumbhttp.py.
- if PYTHON3 and WINDOWS:
+ if WINDOWS:
env['PYTHONLEGACYWINDOWSSTDIO'] = '1'
# Modified HOME in test environment can confuse Rust tools. So set
@@ -3414,7 +3413,7 @@
failed = False
kws = self.options.keywords
- if kws is not None and PYTHON3:
+ if kws is not None:
kws = kws.encode('utf-8')
suite = TestSuite(
To: indygreg, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list