Pass code check.
This commit is contained in:
+3
-3
@@ -87,7 +87,7 @@ def errRun( *cmd, **kwargs ):
|
|||||||
errDone = False
|
errDone = False
|
||||||
while not outDone or not errDone:
|
while not outDone or not errDone:
|
||||||
readable = poller.poll()
|
readable = poller.poll()
|
||||||
for fd, event in readable:
|
for fd, _event in readable:
|
||||||
f = fdtofile[ fd ]
|
f = fdtofile[ fd ]
|
||||||
data = f.read( 1024 )
|
data = f.read( 1024 )
|
||||||
if echo:
|
if echo:
|
||||||
@@ -116,7 +116,7 @@ def quietRun( cmd, **kwargs ):
|
|||||||
return errRun( cmd, stderr=STDOUT, **kwargs )[ 0 ]
|
return errRun( cmd, stderr=STDOUT, **kwargs )[ 0 ]
|
||||||
|
|
||||||
# pylint: enable-msg=E1103
|
# pylint: enable-msg=E1103
|
||||||
# pylint: disable-msg=E1101,W0612
|
# pylint: disable-msg=E1101
|
||||||
|
|
||||||
def isShellBuiltin( cmd ):
|
def isShellBuiltin( cmd ):
|
||||||
"Return True if cmd is a bash builtin."
|
"Return True if cmd is a bash builtin."
|
||||||
@@ -129,7 +129,7 @@ def isShellBuiltin( cmd ):
|
|||||||
|
|
||||||
isShellBuiltin.builtIns = None
|
isShellBuiltin.builtIns = None
|
||||||
|
|
||||||
# pylint: enable-msg=E1101,W0612
|
# pylint: enable-msg=E1101
|
||||||
|
|
||||||
# Interface management
|
# Interface management
|
||||||
#
|
#
|
||||||
|
|||||||
Reference in New Issue
Block a user