Submitter | Katsunori FUJIWARA |
---|---|
Date | Oct. 4, 2013, 4:19 p.m. |
Message ID | <8fb6dc24cd54553cfafe.1380903546@juju> |
Download | mbox | patch |
Permalink | /patch/2734/ |
State | Accepted |
Commit | 8bbe208c181228b7974b98e62e1732d2263d6b4d |
Headers | show |
Comments
Patch
diff --git a/tests/hghave.py b/tests/hghave.py --- a/tests/hghave.py +++ b/tests/hghave.py @@ -282,6 +282,9 @@ from mercurial import util return util.safehasattr(__future__, "absolute_import") +def has_py3k(): + return 3 == sys.version_info[0] + checks = { "true": (lambda: True, "yak shaving"), "false": (lambda: False, "nail clipper"), @@ -324,4 +327,5 @@ "msys": (has_msys, "Windows with MSYS"), "aix": (has_aix, "AIX"), "absimport": (has_absimport, "absolute_import in __future__"), + "py3k": (has_py3k, "running with Python 3.x"), }