Home | History | Annotate | Download | only in python2.7

Lines Matching refs:where

92                 where, value = lookup(token, frame, locals)
93 vars.append((token, where, value))
154 for name, where, value in vars:
158 if where in ('global', 'builtin'):
159 name = ('<em>%s</em> ' % where) + strong(name)
160 elif where == 'local':
163 name = where + strong(name.split('.')[-1])
232 for name, where, value in vars:
236 if where == 'global': name = 'global ' + name
237 elif where != 'local': name = where + name.split('.')[-1]