e7e01290997f66471c08848ee0a968e2526b4b9b,loudml/loudml/_version.py,,,#,5
Before Change
if fdv.readline().strip()[:8] != extra[:8]:
__version__ += "-" + extra
except Exception as e:
if "No such file" not in str(e):
raise
After Change
"v" + __version__)) as fdv:
if fdv.readline().strip()[:8] != extra[:8]:
__version__ += "-" + extra
except FileNotFoundError:
__version__ += "-" + extra[:8]
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
Project Name: regel/loudml
Commit Name: e7e01290997f66471c08848ee0a968e2526b4b9b
Time: 2019-09-29
Author: sebastien.regel@gmail.com
File Name: loudml/loudml/_version.py
Class Name:
Method Name:
Project Name: acl-org/acl-anthology
Commit Name: 7419eacac2dfa909b280881524e685d7ea4d7ec7
Time: 2020-04-24
Author: post@cs.jhu.edu
File Name: bin/add_attachments.py
Class Name:
Method Name: add_attachment
Project Name: freelunchtheorem/Conditional_Density_Estimation
Commit Name: c11520dbcc6c1c3889bc76a2b76f6adf5e99c54d
Time: 2019-05-02
Author: simonboehm@mailbox.org
File Name: cde/density_estimator/BaseNNEstimator.py
Class Name: BaseNNEstimator
Method Name: fit_by_cv