8355f501c96016e14f268e26a2f034ee43b2f984,db_fulltext.py,,,#,23

Before Change



// config
Config = configparser.ConfigParser()
Config.read("../configuration.ini")
// default config
mongoHost = "localhost"
mongoPort = 27017
// read config from file

After Change


// Imports
import os
import sys
runPath = os.path.dirname(sys.argv[0])
sys.path.append(os.path.join(runPath, "./lib/"))

import pymongo

import argparse
import configparser

import cves

// config
Config = configparser.ConfigParser()
Config.read(os.path.join(runPath, "./configuration.ini"))
// default config
mongoHost = "localhost"
mongoPort = 27017
// read config from file
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 16

Instances


Project Name: cve-search/cve-search
Commit Name: 8355f501c96016e14f268e26a2f034ee43b2f984
Time: 2015-01-07
Author: pieterjan.moreels@gmail.com
File Name: db_fulltext.py
Class Name:
Method Name:


Project Name: cve-search/cve-search
Commit Name: 8355f501c96016e14f268e26a2f034ee43b2f984
Time: 2015-01-07
Author: pieterjan.moreels@gmail.com
File Name: db_whitelist.py
Class Name:
Method Name:


Project Name: cve-search/cve-search
Commit Name: 8355f501c96016e14f268e26a2f034ee43b2f984
Time: 2015-01-07
Author: pieterjan.moreels@gmail.com
File Name: db_blacklist.py
Class Name:
Method Name:


Project Name: cve-search/cve-search
Commit Name: 8355f501c96016e14f268e26a2f034ee43b2f984
Time: 2015-01-07
Author: pieterjan.moreels@gmail.com
File Name: db_dump.py
Class Name:
Method Name: