064c3b61b5c206f2aadadeecf7b3f1464afa6cf4,tests/integration_tests/test_experiment.py,,delete_temporary_data,#Any#,78
Before Change
if os.path.exists(csv_path):
os.remove(csv_path)
json_path = csv_path.replace("csv", "json")
if os.path.exists(json_path):
os.remove(json_path)
hdf5_path = csv_path.replace("csv", "hdf5")
After Change
if os.path.exists(json_path):
os.remove(json_path)
hdf5_path = os.path.splitext(csv_path)[0] + ".hdf5"
if os.path.exists(hdf5_path):
os.remove(hdf5_path)

In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
Project Name: uber/ludwig
Commit Name: 064c3b61b5c206f2aadadeecf7b3f1464afa6cf4
Time: 2019-02-19
Author: hemchander.23@gmail.com
File Name: tests/integration_tests/test_experiment.py
Class Name:
Method Name: delete_temporary_data
Project Name: uber/ludwig
Commit Name: 064c3b61b5c206f2aadadeecf7b3f1464afa6cf4
Time: 2019-02-19
Author: hemchander.23@gmail.com
File Name: ludwig/features/image_feature.py
Class Name: ImageBaseFeature
Method Name: add_feature_data
Project Name: google/deepvariant
Commit Name: bb8db448470551c15c9b0ddab573a0c8e2e6303a
Time: 2019-09-18
Author: cym@google.com
File Name: deepvariant/vcf_stats_vis.py
Class Name:
Method Name: _build_all_charts