31bedbc4d8d62fc42a7c9a20dd51c372cb510447,pysb/kappa.py,,_parse_kasim_outfile,#Any#,381

Before Change


        out_file = open(out_filename, "r")

        line = out_file.readline().strip()  // Get the first line
        out_file.close()
        line = line[2:]  // strip off opening "// "
        raw_names = re.split(" ", line)
        column_names = []

After Change


            if header_line[0] != "//":
                break

        raw_names = [term.strip() for term in re.split(",", header_line)]
        column_names = []

        // Get rid of the quotes surrounding the observable names
        for raw_name in raw_names:
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: pysb/pysb
Commit Name: 31bedbc4d8d62fc42a7c9a20dd51c372cb510447
Time: 2017-05-02
Author: ben.gyori@gmail.com
File Name: pysb/kappa.py
Class Name:
Method Name: _parse_kasim_outfile


Project Name: HyperGAN/HyperGAN
Commit Name: 891b8f20087fef526126fea81551e29cbcb34e40
Time: 2019-08-08
Author: mikkel@255bits.com
File Name: hypergan/cli.py
Class Name: CLI
Method Name: run


Project Name: dmnfarrell/pandastable
Commit Name: 8e0eb5b6f5ac8935a59ef293fa5f77344045e6e8
Time: 2016-01-09
Author: farrell.damien@gmail.com
File Name: pandastable/plugins/ipythonview.py
Class Name: IterableIPShell
Method Name: shell