Lines Matching defs:sys
35 import sys
1666 exc, val, tb = sys.exc_info()
2311 It is constructed from sys.argv[0] without extensions if None is given. CLASSNAME
2321 baseName = os.path.basename(sys.argv[0])
2329 if not sys.flags.ignore_environment:
2397 """Report callback exception on sys.stderr.
2400 should when sys.stderr is None."""
2402 print("Exception in Tkinter callback", file=sys.stderr)
2403 sys.last_type = exc
2404 sys.last_value = val
2405 sys.last_traceback = tb