##// END OF EJS Templates
py3: don't try to mangle C extension blob by code transformer
Yuya Nishihara -
r36635:5246f940 default
parent child Browse files
Show More
@@ -31,6 +31,9 b' if sys.version_info[0] >= 3:'
31 # Only handle Mercurial-related modules.
31 # Only handle Mercurial-related modules.
32 if not fullname.startswith(('mercurial.', 'hgext.', 'hgext3rd.')):
32 if not fullname.startswith(('mercurial.', 'hgext.', 'hgext3rd.')):
33 return None
33 return None
34 # don't try to parse binary
35 if fullname.startswith('mercurial.cext.'):
36 return None
34 # third-party packages are expected to be dual-version clean
37 # third-party packages are expected to be dual-version clean
35 if fullname.startswith('mercurial.thirdparty'):
38 if fullname.startswith('mercurial.thirdparty'):
36 return None
39 return None
General Comments 0
You need to be logged in to leave comments. Login now