Searched refs:exprstr (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_decorators.py | 21 def __init__(self, exprstr, func, args, kwds): argument 24 (exprstr, func, args, kwds)) 27 def dbcheck(exprstr, globals=None, locals=None): argument 30 expr = compile(exprstr, "dbcheck-%s" % func.func_name, "eval") 33 raise DbcheckError(exprstr, func, args, kwds)
|
/external/python/cpython3/Lib/test/ |
D | test_decorators.py | 20 def __init__(self, exprstr, func, args, kwds): argument 23 (exprstr, func, args, kwds)) 26 def dbcheck(exprstr, globals=None, locals=None): argument 29 expr = compile(exprstr, "dbcheck-%s" % func.__name__, "eval") 32 raise DbcheckError(exprstr, func, args, kwds)
|