c39ff4af6d82fb3d1c4cc21d25529aaf22018ed4,pyinstaller-gui.py,PyInstallerGUI,__init__,#PyInstallerGUI#,23
Before Change
fr2["relief"] = "ridge"
fr2.pack()
fr4 = Frame(root)
fr4["width"] = 200
fr4["height"] = 100
fr4.pack(side="bottom")
getFileButton = Button(fr1, text="Script to bundle ...")
After Change
fr1 = Frame(root, width=300, height=100)
fr1.pack(side="top")
fr2 = Frame(root, width=300, height=300,
borderwidth=2, relief="ridge")
fr2.pack(ipadx=10, ipady=10)
fr4 = Frame(root, width=300, height=100)
fr4.pack(side="bottom", pady=10)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
Project Name: pyinstaller/pyinstaller
Commit Name: c39ff4af6d82fb3d1c4cc21d25529aaf22018ed4
Time: 2012-02-17
Author: h.goebel@goebel-consult.de
File Name: pyinstaller-gui.py
Class Name: PyInstallerGUI
Method Name: __init__
Project Name: WZBSocialScienceCenter/tmtoolkit
Commit Name: 9def69a805132ff7549744b5b30a2fa7531fa405
Time: 2019-06-12
Author: markus.konrad@wzb.eu
File Name: tmtoolkit/preprocess/_tmpreproc.py
Class Name: TMPreproc
Method Name: tokens_dataframe
Project Name: dmlc/dgl
Commit Name: f1b19a6b67f353762025dae38c2ab9363f553930
Time: 2020-06-19
Author: wmjlyjemaine@gmail.com
File Name: python/dgl/heterograph.py
Class Name: DGLHeteroGraph
Method Name: to