ca01921f19a268cf6fce157779b2aba043a1a43c,PyInstaller/building/build_main.py,Analysis,__init__,#Analysis#,129

Before Change


        self.hiddenimports.extend(CONF["hiddenimports"])

        // Add hook directories from PyInstaller entry points.
        hookspath = hookspath or []
        for entry_point in pkg_resources.iter_entry_points(
                "pyinstaller40", "hook-dirs"):
            hookspath += list(entry_point.load()())
        self.hookspath = hookspath

After Change


        self.hiddenimports.extend(CONF["hiddenimports"])

        // Add hook directories from PyInstaller entry points.
        self.hookspath = []
        for entry_point in pkg_resources.iter_entry_points(
                "pyinstaller40", "hook-dirs"):
            self.hookspath += list(entry_point.load()())
        // Append directories in `hookspath` (`--additional-hooks-dir`) to
        // take precedence over those from the entry points.
        if hookspath:
            self.hookspath.extend(hookspath)

        // Custom runtime hook files that should be included and started before
        // any existing PyInstaller runtime hooks.
        self.custom_runtime_hooks = runtime_hooks or []

        if cipher:
            logger.info("Will encrypt Python bytecode with key: %s", cipher.key)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 5

Instances


Project Name: pyinstaller/pyinstaller
Commit Name: ca01921f19a268cf6fce157779b2aba043a1a43c
Time: 2020-06-12
Author: h.goebel@crazy-compilers.com
File Name: PyInstaller/building/build_main.py
Class Name: Analysis
Method Name: __init__


Project Name: merbanan/rtl_433_tests
Commit Name: b2af2bff0ba58cb6022a21f88e3dc9c8d16f6e77
Time: 2019-09-15
Author: christian@zuckschwerdt.org
File Name: bin/run_test.py
Class Name:
Method Name: run_rtl433


Project Name: GoogleCloudPlatform/cloudml-samples
Commit Name: 75f5092acce738243f4d8dd258bbaa56fcb9f816
Time: 2019-05-20
Author: luoshixin@google.com
File Name: sklearn/sklearn-template/template/trainer/model.py
Class Name:
Method Name: get_estimator