- 论坛徽章:
- 0
|
def mget_head( self, project, ident, version, destination_path ):
mag, command, suffix = self.file_type_dic["ghf"]
command = self.greq_path + " -mget /%s/%s/ghf %s %d %s %s" % (version, ident, project, mag, destination_path, self.site )
args=shlex.split( command )
list=[]
greq = subprocess.Popen( args, bufsize=1, stdout=subprocess.PIPE, stderr=subprocess.STDOUT )
for line in greq.stdout:
if line.startswith( "sh: " ):
continue
stop = yield 1, line
if stop == True:
return
result=greq.wait()
yield result, None
有高手能解释一下stop = yield 1, line和yield result, None的意思吗? |
|