Kaydet (Commit) 425fb148 authored tarafından A. Murat Eren's avatar A. Murat Eren

 pspeclist'i dondurmeye gerek yok :(
üst 4aee2e4e
......@@ -65,10 +65,7 @@ def buildDepResolver(pspeclist):
if p in namemap.get(pspeclist[j]):
pspeclist.insert(j+1, pspeclist.pop(i))
clean = False
if not clean:
return False
else:
return pspeclist
return clean
def runtimeDepResolver(pspeclist):
"""arranges the order of the pspec's in the pspeclist to satisfy runtime deps"""
......@@ -80,10 +77,7 @@ def runtimeDepResolver(pspeclist):
if p in namemap.get(pspeclist[j]):
pspeclist.insert(j+1, pspeclist.pop(i))
clean = False
if not clean:
return False
else:
return pspeclist
return clean
pspeclist = findPspecs()
......
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