contrib/check-code.py
changeset 32604 071423d0a584
parent 32418 1651977596c0
child 32696 0c09afdf5704
--- a/contrib/check-code.py	Fri May 26 03:41:10 2017 +0200
+++ b/contrib/check-code.py	Wed May 31 11:41:54 2017 -0700
@@ -340,6 +340,8 @@
     (r'^import pickle', "don't use pickle, use util.pickle"),
     (r'^import httplib', "don't use httplib, use util.httplib"),
     (r'^import BaseHTTPServer', "use util.httpserver instead"),
+    (r'^(from|import) mercurial\.(cext|pure|cffi)',
+     "use mercurial.policy.importmod instead"),
     (r'\.next\(\)', "don't use .next(), use next(...)"),
     (r'([a-z]*).revision\(\1\.node\(',
      "don't convert rev to node before passing to revision(nodeorrev)"),