Home | History | Annotate | Download | only in pymock

Lines Matching refs:thing

1087 def _dot_lookup(thing, comp, import_path):
1089 return getattr(thing, comp)
1092 return getattr(thing, comp)
1098 thing = __import__(import_path)
1102 thing = _dot_lookup(thing, comp, import_path)
1103 return thing
2123 thing = self
2124 while thing is not None:
2125 if thing.from_kall:
2126 vals.append(thing)
2127 thing = thing.parent