--- a/mercurial/__init__.py Tue Jul 11 00:40:29 2017 -0400
+++ b/mercurial/__init__.py Fri Jul 14 20:19:46 2017 -0700
@@ -31,6 +31,9 @@
# Only handle Mercurial-related modules.
if not fullname.startswith(('mercurial.', 'hgext.', 'hgext3rd.')):
return None
+ # selectors2 is already dual-version clean, don't try and mangle it
+ if fullname.startswith('mercurial.selectors2'):
+ return None
# zstd is already dual-version clean, don't try and mangle it
if fullname.startswith('mercurial.zstd'):
return None