remove unused code

This commit is contained in:
holger krekel 2012-10-28 10:12:36 +01:00
parent 427cf6f66d
commit 6b6080ae6c
1 changed files with 0 additions and 11 deletions

View File

@ -477,14 +477,3 @@ def getcfg(args, inibasenames):
return iniconfig['pytest']
return {}
def findupwards(current, basename):
current = py.path.local(current)
while 1:
p = current.join(basename)
if p.check():
return p
p = current.dirpath()
if p == current:
return
current = p