##// END OF EJS Templates
python3: don't byte mangle third-party packages...
Siddharth Agarwal -
r34397:9fb9f844 default
parent child Browse files
Show More
@@ -34,6 +34,9 b' if sys.version_info[0] >= 3:'
34 # selectors2 is already dual-version clean, don't try and mangle it
34 # selectors2 is already dual-version clean, don't try and mangle it
35 if fullname.startswith('mercurial.selectors2'):
35 if fullname.startswith('mercurial.selectors2'):
36 return None
36 return None
37 # third-party packages are expected to be dual-version clean
38 if fullname.startswith('mercurial.thirdparty'):
39 return None
37 # zstd is already dual-version clean, don't try and mangle it
40 # zstd is already dual-version clean, don't try and mangle it
38 if fullname.startswith('mercurial.zstd'):
41 if fullname.startswith('mercurial.zstd'):
39 return None
42 return None
General Comments 0
You need to be logged in to leave comments. Login now