• Facebook
  • Twitter
  • Reddit
  • StumbleUpon
  • Digg
  • email

All Samples(3)  |  Call(3)  |  Derive(0)  |  Import(0)
This is a shorthand for 'print_exception(sys.last_type,
sys.last_value, sys.last_traceback, limit, file)'.

        def print_last(limit=None, file=None):
    """This is a shorthand for 'print_exception(sys.last_type,
    sys.last_value, sys.last_traceback, limit, file)'."""
    if not hasattr(sys, "last_type"):
        raise ValueError("no last exception")
    if file is None:
        file = sys.stderr
    print_exception(sys.last_type, sys.last_value, sys.last_traceback,
                    limit, file)
        


src/f/r/fripp-studio-HEAD/trunk/fripp_dev/wxappext/compoundfiles.py   fripp-studio(Download)
                                        createFlags)
                                except Exception, e:
                                    print e
                                    traceback.print_last()
                yield None
            wx.GetApp().IgnoreMDIChildChanges = False
            if activeSubdocument:

src/f/r/fripp-studio-HEAD/fripp_dev/wxappext/compoundfiles.py   fripp-studio(Download)
                                        createFlags)
                                except Exception, e:
                                    print e
                                    traceback.print_last()
                yield None
            wx.GetApp().IgnoreMDIChildChanges = False
            if activeSubdocument:

src/n/e/new_msnbot-HEAD/msnbot.py   new_msnbot(Download)
							self.m.read(i)
					except (msnlib.SocketError, socket.error), err:
						import traceback
						traceback.print_last()
						if i != self.m:
							self.m.close(i)
						else: