D | test_response.py | 36 useful = lambda x: not x[0].startswith('_') function 37 nest = dict(filter(useful, Item.Nest.__dict__.items())) 39 useful = lambda x: not x[0].startswith('_') and not x[0] == 'Nest' function 40 item = dict(filter(useful, Item.__dict__.items()))
|