3dfdfaa6db730f66bdff5155320d4c4ee5d5b29c,EncryptionTool.py,,readAndDecryptAndSave,#Any#Any#,86
Before Change
def readAndDecryptAndSave(inp_file, out_file):
dec_list = readAndDecrypt(inp_file)
output = open(out_file, "w")
for i in range(len(dec_list)):
output.write(str(dec_list[i]))
output.close()
// encryption
After Change
def readAndDecryptAndSave(inp_file, out_file):
dec_list = readAndDecrypt(inp_file)
output = open(out_file, "w")
for dec in dec_list:
output.write(str(dec))
output.close()
// encryption
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 8
Instances
Project Name: geekcomputers/Python
Commit Name: 3dfdfaa6db730f66bdff5155320d4c4ee5d5b29c
Time: 2020-09-20
Author: markhappy200@gmail.com
File Name: EncryptionTool.py
Class Name:
Method Name: readAndDecryptAndSave
Project Name: biocore/scikit-bio
Commit Name: f03ae01198c24d0a1abd69b583199b7730ecdfe7
Time: 2016-02-16
Author: kestrel.gorlick@gmail.com
File Name: skbio/io/format/stockholm.py
Class Name:
Method Name: _write_padded_data
Project Name: geekcomputers/Python
Commit Name: 3dfdfaa6db730f66bdff5155320d4c4ee5d5b29c
Time: 2020-09-20
Author: markhappy200@gmail.com
File Name: EncryptionTool.py
Class Name:
Method Name: