Searched defs:traceback (Results 1 - 25 of 51) sorted by relevance

123

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/
H A Drpythond.py11 import traceback namespace
46 traceback.print_exc(100)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A Datexit.py28 import traceback namespace
30 traceback.print_exc()
H A DSocketServer.py347 The default is to print a traceback and continue.
353 import traceback namespace
354 traceback.print_exc() # XXX But this goes to stderr!
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/
H A Dtest_parser.py6 import parser, traceback namespace
23 traceback.print_exc()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Datexit.py28 import traceback namespace
30 traceback.print_exc()
H A Dpy_compile.py11 import traceback namespace
48 tbtext = ''.join(traceback.format_exception_only(exc_type, exc_value))
H A Dcode.py9 import traceback namespace
59 exception (SyntaxError or OverflowError). A syntax traceback
94 display a traceback. All exceptions are caught except
138 list = traceback.format_exception_only(type, value)
154 tblist = traceback.extract_tb(tb)
156 list = traceback.format_list(tblist)
159 list[len(list):] = traceback.format_exception_only(type, value)
H A Dtimeit.py135 self.src = src # Save for traceback display
152 """Helper to print a traceback from the timed code.
162 The advantage over the standard traceback is that source lines
165 The optional file argument directs where the traceback is
168 import linecache, traceback namespace
176 traceback.print_exc(file=file)
244 When an exception happens during timing, a traceback is printed to
H A Dcgitb.py1 """More comprehensive traceback formatting for Python scripts.
33 import traceback namespace
103 """Return a nice HTML document describing a given traceback."""
186 are not reading this in a Web browser, here is the original traceback:
191 ''.join(traceback.format_exception(etype, evalue, etb)))
194 """Return a plain text document describing a given traceback."""
254 the original traceback:
257 ''' % ''.join(traceback.format_exception(etype, evalue, etb))
283 doc = ''.join(traceback.format_exception(*info))
304 msg = '<p> Tried to save traceback t
[all...]
H A DSimpleXMLRPCServer.py108 import traceback namespace
513 self.send_header("X-traceback", traceback.format_exc())
H A DSocketServer.py336 The default is to print a traceback and continue.
342 import traceback namespace
343 traceback.print_exc() # XXX But this goes to stderr!
H A Dsite.py64 import traceback namespace
174 for record in traceback.format_exception(*sys.exc_info()):
518 "'import sitecustomize' failed; use -v for traceback"
532 "'import usercustomize' failed; use -v for traceback"
/device/linaro/bootloader/edk2/BaseTools/Source/Python/TargetTool/
H A DTargetTool.py17 import traceback namespace
80 traceback.print_exception(last_type, last_value, last_tb)
137 traceback.print_exception(last_type, last_value, last_tb)
259 traceback.print_exception(last_type, last_value, last_tb)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_traceback.py1 """Test cases for traceback module"""
10 import traceback namespace
21 return traceback.format_exception_only(exc, value)
32 # XXX why doesn't compile raise the same traceback?
89 traceback.extract_tb(sys.exc_traceback)
106 src = traceback.extract_tb(sys.exc_traceback)[-1][-1]
117 lst = traceback.format_exception_only(e.__class__, e)
138 err = traceback.format_exception_only(str_type, None)
145 err = traceback.format_exception_only(str_type, str_value)
153 err = traceback
[all...]
H A Dtest_signal.py9 import traceback namespace
52 return ''.join(traceback.format_stack(frame, limit=limit))
137 traceback.format_exc())
167 pickle.dump(traceback.format_exc(), done_w)
172 traceback.print_exc()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/
H A Dloader.py6 import traceback namespace
23 message = 'Failed to import test module: %s\n%s' % (name, traceback.format_exc())
H A Dresult.py5 import traceback namespace
35 formatted traceback of the error that occurred.
155 # Skip test runner traceback levels
160 # Skip assert*() traceback levels
162 msgLines = traceback.format_exception(exctype, value, tb, length)
164 msgLines = traceback.format_exception(exctype, value, tb)
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Trim/
H A DTrim.py586 import traceback namespace
588 EdkLogger.quiet("(Python %s on %s) " % (platform.python_version(), sys.platform) + traceback.format_exc())
591 import traceback namespace
600 EdkLogger.quiet("(Python %s on %s) " % (platform.python_version(), sys.platform) + traceback.format_exc())
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
H A Dsite.py71 import traceback namespace
169 for record in traceback.format_exception(*sys.exc_info()):
486 "'import sitecustomize' failed; use -v for traceback"
500 "'import usercustomize' failed; use -v for traceback"
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
H A Dsite.py73 import traceback namespace
171 for record in traceback.format_exception(*sys.exc_info()):
475 "'import sitecustomize' failed; use -v for traceback"
489 "'import usercustomize' failed; use -v for traceback"
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/
H A Dtest_result.py6 import traceback namespace
138 # the form returned by sys.exc_info(): (type, value, traceback)"
186 # (type, value, traceback)"
368 return ['A traceback']
371 unittest.result.traceback = traceback
454 unittest.result.traceback = MockTraceback
492 expectedFullMessage = 'A traceback%s%s' % (expectedOutMessage, expectedErrMessage)
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
H A DGenDepex.py18 import traceback namespace
439 EdkLogger.quiet(traceback.format_exc())
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
H A DEdkLogger.py16 import traceback namespace
85 CallerStack = traceback.extract_stack()[-2]
123 ToolName = os.path.basename(traceback.extract_stack()[-2][0])
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
H A DGenFds.py294 import traceback namespace
295 EdkLogger.quiet(traceback.format_exc())
298 import traceback namespace
306 EdkLogger.quiet(traceback.format_exc())
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
H A Dlua.c160 static int traceback (lua_State *L) { function
175 lua_pushcfunction(L, traceback); /* push traceback function */
181 lua_remove(L, base); /* remove traceback function */

Completed in 465 milliseconds

123