Kaydet (Commit) 7c005af9 authored tarafından Tim Peters's avatar Tim Peters

Whitespace normalization.

üst 02035bc6
......@@ -54,7 +54,7 @@ import types
import os
from errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, \
ENOTCONN, ESHUTDOWN
ENOTCONN, ESHUTDOWN
try:
socket_map
......
......@@ -44,7 +44,7 @@ def filefilter(name, arguments, trans_data, trans_filename=None):
trans_data(name, "stdin", sys.stdin, sys.stdout)
else:
for file in arguments:
if file == '-': # - is conventional for stdin
if file == '-': # - is conventional for stdin
file = "stdin"
infp = sys.stdin
else:
......@@ -77,7 +77,7 @@ def line_by_line(name, file, infp, outfp, translate_line):
line = infp.readline()
if line == "":
break
elif line: # None returns are skipped
elif line: # None returns are skipped
outfp.write(translate_line(name, file, line))
def linefilter(name, arguments, trans_data, trans_filename=None):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment