8000 Minor comment styling. · github3py/urllib3@9eb7494 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9eb7494

Browse files
committed
Minor comment styling.
1 parent ea448f9 commit 9eb7494

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

urllib3/util.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,11 +118,11 @@ def is_connection_dropped(conn):
118118
let the platform handle connection recycling transparently for us.
119119
"""
120120
sock = getattr(conn, 'sock', False)
121-
if not sock: #Platform-specific: AppEngine
121+
if not sock: # Platform-specific: AppEngine
122122
return False
123123

124124
if not poll: # Platform-specific
125-
if not select: #Platform-specific: AppEngine
125+
if not select: # Platform-specific: AppEngine
126126
return False
127127

128128
return select([sock], [], [], 0.0)[0]

0 commit comments

Comments
 (0)
0