[PATCH] doc: make gendoc.py module import policy aware

Gregory Szorc gregory.szorc at gmail.com
Sat Dec 12 18:24:29 UTC 2015


# HG changeset patch
# User Gregory Szorc <gregory.szorc at gmail.com>
# Date 1449944609 18000
#      Sat Dec 12 13:23:29 2015 -0500
# Node ID 9902117fcf113ad4aa4d9041c949bf27dde3ac70
# Parent  944af8e2eb4cddf96ba5b8a96854528b40979715
doc: make gendoc.py module import policy aware

Without this, running gendoc.py during an install without C modules
available (via `make local`) will result in an import failure because
the default module load policy insists on C modules.

We also remove the sys.path adjustment because it is no longer needed
since our magic importer handles things.

diff --git a/doc/gendoc.py b/doc/gendoc.py
--- a/doc/gendoc.py
+++ b/doc/gendoc.py
@@ -3,12 +3,14 @@
 where DOC is the name of a document
 """
 
 import os, sys, textwrap
+
+# This script is executed during installs and may not have C extensions
+# available. Relax C module requirements.
+os.environ['HGMODULEPOLICY'] = 'allow'
 # import from the live mercurial repo
 sys.path.insert(0, "..")
-# fall back to pure modules if required C extensions are not available
-sys.path.append(os.path.join('..', 'mercurial', 'pure'))
 from mercurial import demandimport; demandimport.enable()
 from mercurial import minirst
 from mercurial.commands import table, globalopts
 from mercurial.i18n import gettext, _


More information about the Mercurial-devel mailing list