Searched refs:evalue (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython2/Lib/ |
D | cgitb.py | 104 etype, evalue, etb = einfo 174 pydoc.html.escape(str(evalue)))] 175 if isinstance(evalue, BaseException): 176 for name in dir(evalue): 178 value = pydoc.html.repr(getattr(evalue, name)) 191 ''.join(traceback.format_exception(etype, evalue, etb))) 195 etype, evalue, etb = einfo 245 exception = ['%s: %s' % (str(etype), str(evalue))] 246 if isinstance(evalue, BaseException): 247 for name in dir(evalue): [all …]
|
/external/python/cpython3/Lib/ |
D | cgitb.py | 103 etype, evalue, etb = einfo 173 pydoc.html.escape(str(evalue)))] 174 for name in dir(evalue): 176 value = pydoc.html.repr(getattr(evalue, name)) 189 ''.join(traceback.format_exception(etype, evalue, etb))) 193 etype, evalue, etb = einfo 243 exception = ['%s: %s' % (str(etype), str(evalue))] 244 for name in dir(evalue): 245 value = pydoc.text.repr(getattr(evalue, name)) 254 ''' % ''.join(traceback.format_exception(etype, evalue, etb)) [all …]
|
/external/toolchain-utils/dejagnu/gdb_baseline/ |
D | armv7a-cros-linux-gnueabi | 17714 PASS: gdb.python/py-value.exp: print evalue 17715 PASS: gdb.python/py-value.exp: python evalue = gdb.history (0) 17716 PASS: gdb.python/py-value.exp: python print (int (evalue))
|
D | i686-pc-linux-gnu | 17805 PASS: gdb.python/py-value.exp: print evalue 17806 PASS: gdb.python/py-value.exp: python evalue = gdb.history (0) 17807 PASS: gdb.python/py-value.exp: python print (int (evalue))
|
D | x86_64-cros-linux-gnu | 18073 PASS: gdb.python/py-value.exp: print evalue 18074 PASS: gdb.python/py-value.exp: python evalue = gdb.history (0) 18075 PASS: gdb.python/py-value.exp: python print (int (evalue))
|