f1bc5b054e29f6d8e948fe7222936a2b0a975535,bokeh/util/compiler.py,,_bundle_models,#Any#,537
Before Change
with io.open(join(bokehjs_dir, "js", name + ".json"), encoding="utf-8") as f:
return json.loads(f.read())
bundles = ["bokeh", "bokeh-api", "bokeh-widgets", "bokeh-tables", "bokeh-gl"]
known_modules = set(sum([ read_json(name) for name in bundles ], []))
custom_impls = _compile_models(custom_models)
extra_modules = {}
After Change
modules = []
with io.open(join(bokehjs_dir, "js", "bokeh.json"), encoding="utf-8") as f:
bokeh = json.loads(f.read())
known_modules = set()
for artifact in bokeh["artifacts"]:
canonical = artifact["module"].get("canonical")
if canonical is not None:
known_modules.add(canonical)
custom_impls = _compile_models(custom_models)
extra_modules = {}
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 6
Instances
Project Name: bokeh/bokeh
Commit Name: f1bc5b054e29f6d8e948fe7222936a2b0a975535
Time: 2019-10-07
Author: mattpap@gmail.com
File Name: bokeh/util/compiler.py
Class Name:
Method Name: _bundle_models
Project Name: ChrisCummins/clgen
Commit Name: 208484051b1d436aa575fcf397316135cd84f021
Time: 2020-01-23
Author: chrisc.101@gmail.com
File Name: deeplearning/clgen/corpuses/atomizers_test.py
Class Name:
Method Name:
Project Name: GoogleCloudPlatform/PerfKitBenchmarker
Commit Name: 0d646d103590b367c28d1e9588edca610b361e1f
Time: 2016-02-12
Author: carlos.torres@rackspace.com
File Name: perfkitbenchmarker/providers/rackspace/rackspace_virtual_machine.py
Class Name: RackspaceVirtualMachine
Method Name: _Exists