mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-22 21:32:31 +00:00
python-3.6.zip added from Github
README.cosmo contains the necessary links.
This commit is contained in:
parent
75fc601ff5
commit
0c4c56ff39
4219 changed files with 1968626 additions and 0 deletions
24
third_party/python/Tools/scripts/lfcr.py
vendored
Executable file
24
third_party/python/Tools/scripts/lfcr.py
vendored
Executable file
|
@ -0,0 +1,24 @@
|
|||
#! /usr/bin/env python3
|
||||
|
||||
"Replace LF with CRLF in argument files. Print names of changed files."
|
||||
|
||||
import sys, re, os
|
||||
|
||||
def main():
|
||||
for filename in sys.argv[1:]:
|
||||
if os.path.isdir(filename):
|
||||
print(filename, "Directory!")
|
||||
continue
|
||||
with open(filename, "rb") as f:
|
||||
data = f.read()
|
||||
if b'\0' in data:
|
||||
print(filename, "Binary!")
|
||||
continue
|
||||
newdata = re.sub(b"\r?\n", b"\r\n", data)
|
||||
if newdata != data:
|
||||
print(filename)
|
||||
with open(filename, "wb") as f:
|
||||
f.write(newdata)
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
Loading…
Add table
Add a link
Reference in a new issue