3dfdfaa6db730f66bdff5155320d4c4ee5d5b29c,EncryptionTool.py,,,#,95

Before Change


// saves encrypted in txt file
output = open("encrypted.txt", "w")
for i in range(len(values)):
    output.write(str(values[i]) + " ")
output.close()

// read and decrypts
print(readAndDecrypt("encrypted.txt"))

After Change


// saves encrypted in txt file
output = open("encrypted.txt", "w")
for v in values:
    output.write(str(v) + " ")
output.close()

// read and decrypts
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: geekcomputers/Python
Commit Name: 3dfdfaa6db730f66bdff5155320d4c4ee5d5b29c
Time: 2020-09-20
Author: markhappy200@gmail.com
File Name: EncryptionTool.py
Class Name:
Method Name:


Project Name: deepchem/deepchem
Commit Name: 045c79caa96b768de9ce363d8c380a5c98f6310d
Time: 2016-11-09
Author: zqwu@sherlock-ln02.stanford.edu
File Name: examples/benchmark.py
Class Name:
Method Name: benchmark_loading_datasets


Project Name: jindongwang/transferlearning
Commit Name: e6b394f7340cbeee16bf4424cdf0367f80b60619
Time: 2018-12-22
Author: jindongwang@outlook.com
File Name: code/deep/finetune_AlexNet_ResNet/office31.py
Class Name:
Method Name: