View | Details | Raw Unified | Return to bug 227836 | Differences between
and this patch

Collapse All | Expand All

(-)loader.py.new 2018-09-13 23:15:32.681315000 +0200 (-1 / +1 lines)
Lines 1240-1246 Link Here
1240
                try:
1240
                try:
1241
                    pycache_files = [
1241
                    pycache_files = [
1242
                        os.path.join('__pycache__', x) for x in
1242
                        os.path.join('__pycache__', x) for x in
1243
                        sorted(os.listdir(os.path.join(mod_dir, '__pycache__')))
1243
                        sorted(os.listdir(os.path.join(mod_dir, '__pycache__'))) if not x.endswith('opt-1.pyc') and not x.endswith('opt-2.pyc')
1244
                    ]
1244
                    ]
1245
                except OSError:
1245
                except OSError:
1246
                    pass
1246
                    pass

Return to bug 227836