author | Augie Fackler <raf@durin42.com> |
Wed, 08 Mar 2017 18:11:19 -0500 | |
changeset 31307 | f8d41edd0357 |
parent 31306 | c920efa9d34b |
child 31308 | 62939e0148f1 |
--- a/mercurial/__init__.py Fri Mar 03 14:42:56 2017 -0500 +++ b/mercurial/__init__.py Wed Mar 08 18:11:19 2017 -0500 @@ -137,6 +137,9 @@ # Only handle Mercurial-related modules. if not fullname.startswith(('mercurial.', 'hgext.', 'hgext3rd.')): return None + # zstd is already dual-version clean, don't try and mangle it + if fullname.startswith('mercurial.zstd'): + return None # This assumes Python 3 doesn't support loading C modules. if fullname in _dualmodules: