HomeSort by relevance Sort by last modified time
    Searched refs:tblist (Results 1 - 3 of 3) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
code.py 154 tblist = traceback.extract_tb(tb)
155 del tblist[:1]
156 list = traceback.format_list(tblist)
161 tblist = tb = None
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
code.py 154 tblist = traceback.extract_tb(tb)
155 del tblist[:1]
156 list = traceback.format_list(tblist)
161 tblist = tb = None
  /external/lldb/test/pexpect-2.4/
pexpect.py 113 tblist = traceback.extract_tb(sys.exc_info()[2])
114 #tblist = filter(self.__filter_not_pexpect, tblist)
115 tblist = [item for item in tblist if self.__filter_not_pexpect(item)]
116 tblist = traceback.format_list(tblist)
117 return ''.join(tblist)
    [all...]

Completed in 76 milliseconds