Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7c005af

Browse files
committed
Whitespace normalization.
1 parent 02035bc commit 7c005af

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Lib/asyncore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
import os
5656
from errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, \
57-
ENOTCONN, ESHUTDOWN
57+
ENOTCONN, ESHUTDOWN
5858

5959
try:
6060
socket_map

Lib/compilerlike.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def filefilter(name, arguments, trans_data, trans_filename=None):
4444
trans_data(name, "stdin", sys.stdin, sys.stdout)
4545
else:
4646
for file in arguments:
47-
if file == '-': # - is conventional for stdin
47+
if file == '-': # - is conventional for stdin
4848
file = "stdin"
4949
infp = sys.stdin
5050
else:
@@ -77,7 +77,7 @@ def line_by_line(name, file, infp, outfp, translate_line):
7777
line = infp.readline()
7878
if line == "":
7979
break
80-
elif line: # None returns are skipped
80+
elif line: # None returns are skipped
8181
outfp.write(translate_line(name, file, line))
8282

8383
def linefilter(name, arguments, trans_data, trans_filename=None):

0 commit comments

Comments
 (0)