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
print(readAndDecrypt("encrypted.txt"))
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 11

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: lingpy/lingpy
Commit Name: 6630157b77a1dea1bb33ab9645aa9ae3f9b50111
Time: 2013-07-25
Author: bambooforest@gmail.com
File Name: lingpy/basic/spreadsheet.py
Class Name: Spreadsheet
Method Name: pprint


Project Name: lmcinnes/umap
Commit Name: 953ec6dcd4388f96581a0856e55cf21f1c64c914
Time: 2021-02-11
Author: leland.mcinnes@gmail.com
File Name: umap/tests/test_umap_ops.py
Class Name:
Method Name: test_disconnected_data