A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://svn.python.org/projects/python/branches/r22b1-branch/Tools/scripts/crlf.py below:

#! /usr/bin/env python "Replace CRLF with LF in argument files. Print names of changed files." import sys, re, os for file in sys.argv[1:]: if os.path.isdir(file): print file, "Directory!" continue data = open(file, "rb").read() if '\0' in data: print file, "Binary!" continue newdata = re.sub("\r\n", "\n", data) if newdata != data: print file f = open(file, "wb") f.write(newdata) f.close()

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4