97b96c5d719888773c3977397714b992ca86e606,bn/zero_width.py,,,#,74

Before Change




if __name__ == "__main__":
  for line in sys.stdin:
    line = line.decode("utf-8")
    line = RemoveOptionalZW(line)
    sys.stdout.write(line.encode("utf-8"))

After Change


  stdin = io.open(0, mode="rt", encoding="utf-8", closefd=False)
  stdout = io.open(1, mode="wt", encoding="utf-8", closefd=False)
  for line in stdin:
    stdout.write(RemoveOptionalZW(line))
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 5

Instances


Project Name: google/language-resources
Commit Name: 97b96c5d719888773c3977397714b992ca86e606
Time: 2017-11-14
Author: mjansche@google.com
File Name: bn/zero_width.py
Class Name:
Method Name:


Project Name: vatlab/SoS
Commit Name: bc823da8c38eae03a311d0ba0627b23b84939b56
Time: 2017-07-30
Author: ben.bog@gmail.com
File Name: src/sos/actions.py
Class Name: SoS_ExecuteScript
Method Name: run


Project Name: google/language-resources
Commit Name: 97b96c5d719888773c3977397714b992ca86e606
Time: 2017-11-14
Author: mjansche@google.com
File Name: si/zero_width.py
Class Name:
Method Name: