remove unused code

This commit is contained in:
holger krekel 2012-11-02 16:04:56 +01:00
parent fb173a97a8
commit ca281b7c1b
1 changed files with 0 additions and 6 deletions

View File

@ -1286,12 +1286,6 @@ scopenum_subfunction = scopes.index("subfunction")
def scopemismatch(currentscope, newscope):
return scopes.index(newscope) > scopes.index(currentscope)
def slice_kwargs(names, kwargs):
new_kwargs = {}
for name in names:
new_kwargs[name] = kwargs[name]
return new_kwargs
class FixtureLookupError(LookupError):
""" could not return a requested Fixture (missing or invalid). """
def __init__(self, argname, request, msg=None):