Lines Matching refs:code
61 func = label(entry.code)
67 callersdicts[id(entry.code)] = callers
72 func = label(entry.code)
75 callers = callersdicts[id(subentry.code)]
123 def label(code):
124 if isinstance(code, str):
125 return ('~', 0, code) # built-in functions ('~' sorts at the end)
127 return (code.co_filename, code.co_firstlineno, code.co_name)
163 code = "run_module(modname, run_name='__main__')"
172 code = compile(fp.read(), progname, 'exec')
180 runctx(code, globs, None, options.outfile, options.sort)