##// END OF EJS Templates
setup: remove set and dict comprehensions...
Gregory Szorc -
r42365:bd92dd3e stable
parent child Browse files
Show More
@@ -795,8 +795,8 b' class hgbuilddoc(Command):'
795 795 normalizecrlf('doc/%s.html' % root)
796 796
797 797 # This logic is duplicated in doc/Makefile.
798 sources = {f for f in os.listdir('mercurial/help')
799 if re.search(r'[0-9]\.txt$', f)}
798 sources = set(f for f in os.listdir('mercurial/help')
799 if re.search(r'[0-9]\.txt$', f))
800 800
801 801 # common.txt is a one-off.
802 802 gentxt('common')
@@ -971,9 +971,12 b' if py2exehacked:'
971 971 res = buildpy2exe.find_needed_modules(self, mf, files, modules)
972 972
973 973 # Replace virtualenv's distutils modules with the real ones.
974 res.modules = {
975 k: v for k, v in res.modules.items()
976 if k != 'distutils' and not k.startswith('distutils.')}
974 modules = {}
975 for k, v in res.modules.items():
976 if k != 'distutils' and not k.startswith('distutils.'):
977 modules[k] = v
978
979 res.modules = modules
977 980
978 981 import opcode
979 982 distutilsreal = os.path.join(os.path.dirname(opcode.__file__),
General Comments 0
You need to be logged in to leave comments. Login now