b605a4b84ca3f5e17cf106fe025f8a688ab8cc65,docs/source/conf.py,,,#,30

Before Change


    os.path.dirname(os.path.dirname(os.path.abspath(__file__))))

with io.open(os.path.join(ROOT_PATH, "snips_nlu", "__version__")) as f:
    version = f.readline().strip()

// The full version, including alpha/beta/rc tags.
release = version

After Change



with io.open(os.path.join(ROOT_PATH, "snips_nlu", "__about__.py"),
             encoding="utf8") as f:
    about = dict()
    exec(f.read(), about)

version = about["__version__"]

// The full version, including alpha/beta/rc tags.
release = version
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 6

Instances


Project Name: snipsco/snips-nlu
Commit Name: b605a4b84ca3f5e17cf106fe025f8a688ab8cc65
Time: 2018-06-21
Author: adrien.ball@snips.net
File Name: docs/source/conf.py
Class Name:
Method Name:


Project Name: snipsco/snips-nlu
Commit Name: fe26bca9c47ce1e609f7bcdf19fc2715c408e2e8
Time: 2018-06-19
Author: adrien.ball@snips.net
File Name: setup.py
Class Name:
Method Name:


Project Name: PIQuIL/QuCumber
Commit Name: 49dd24ad649ed08d96317f504106bf36b0149247
Time: 2018-08-09
Author: emerali@users.noreply.github.com
File Name: docs/conf.py
Class Name:
Method Name: