Submitter | Augie Fackler |
---|---|
Date | April 27, 2016, 3:38 p.m. |
Message ID | <1d2e15aa68f73659a3f4.1461771538@augie-macbookair2.roam.corp.google.com> |
Download | mbox | patch |
Permalink | /patch/14800/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/tests/hghave.py b/tests/hghave.py --- a/tests/hghave.py +++ b/tests/hghave.py @@ -456,6 +456,14 @@ def has_aix(): def has_osx(): return sys.platform == 'darwin' +@check("bdistmpkg", "bdist_mpkg Python Package") +def has_bdistmpkg(): + try: + import bdist_mpkg.script_bdist_mpkg + return True + except ImportError: + return False + @check("docker", "docker support") def has_docker(): pat = r'A self-sufficient runtime for'