Esempio n. 1
0
 def __init__(self, *args):
     BuiltinAssertionError.__init__(self, *args)
     if args:
         try:
             self.msg = str(args[0])
         except py.builtin._sysex:
             raise
         except:
             self.msg = "<[broken __repr__] %s at %0xd>" %(
                 args[0].__class__, id(args[0]))
     else:
         f = py.code.Frame(sys._getframe(1))
         try:
             source = f.code.fullsource
             if source is not None:
                 try:
                     source = source.getstatement(f.lineno, assertion=True)
                 except IndexError:
                     source = None
                 else:
                     source = str(source.deindent()).strip()
         except py.error.ENOENT:
             source = None
             # this can also occur during reinterpretation, when the
             # co_filename is set to "<run>".
         if source:
             self.msg = reinterpret(source, f, should_fail=True)
         else:
             self.msg = "<could not determine information>"
         if not self.args:
             self.args = (self.msg,)
Esempio n. 2
0
 def __init__(self, *args):
     BuiltinAssertionError.__init__(self, *args)
     if args:
         try:
             self.msg = str(args[0])
         except py.builtin._sysex:
             raise
         except:
             self.msg = "<[broken __repr__] %s at %0xd>" % (
                 args[0].__class__, id(args[0]))
     else:
         f = py.code.Frame(sys._getframe(1))
         try:
             source = f.code.fullsource
             if source is not None:
                 try:
                     source = source.getstatement(f.lineno, assertion=True)
                 except IndexError:
                     source = None
                 else:
                     source = str(source.deindent()).strip()
         except py.error.ENOENT:
             source = None
             # this can also occur during reinterpretation, when the
             # co_filename is set to "<run>".
         if source:
             self.msg = reinterpret(source, f, should_fail=True)
         else:
             self.msg = "<could not determine information>"
         if not self.args:
             self.args = (self.msg, )
Esempio n. 3
0
 def __init__(self, *args):
     BuiltinAssertionError.__init__(self, *args)
     if args:
         # on Python2.6 we get len(args)==2 for: assert 0, (x,y)
         # on Python2.7 and above we always get len(args) == 1
         # with args[0] being the (x,y) tuple.
         if len(args) > 1:
             toprint = args
         else:
             toprint = args[0]
         try:
             self.msg = u(toprint)
         except Exception:
             self.msg = u(
                 "<[broken __repr__] %s at %0xd>"
                 % (toprint.__class__, id(toprint)))
     else:
         f = py.code.Frame(sys._getframe(1))
         try:
             source = f.code.fullsource
             if source is not None:
                 try:
                     source = source.getstatement(f.lineno, assertion=True)
                 except IndexError:
                     source = None
                 else:
                     source = str(source.deindent()).strip()
         except py.error.ENOENT:
             source = None
             # this can also occur during reinterpretation, when the
             # co_filename is set to "<run>".
         if source:
             self.msg = newinterpret.interpret(source, f, should_fail=True)
         else:
             self.msg = "<could not determine information>"
         if not self.args:
             self.args = (self.msg,)
Esempio n. 4
0
 def __init__(self, *args):
     BuiltinAssertionError.__init__(self, *args)
     if args:
         # on Python2.6 we get len(args)==2 for: assert 0, (x,y)
         # on Python2.7 and above we always get len(args) == 1
         # with args[0] being the (x,y) tuple.
         if len(args) > 1:
             toprint = args
         else:
             toprint = args[0]
         try:
             self.msg = u(toprint)
         except Exception:
             self.msg = u(
                 "<[broken __repr__] %s at %0xd>"
                 % (toprint.__class__, id(toprint)))
     else:
         f = py.code.Frame(sys._getframe(1))
         try:
             source = f.code.fullsource
             if source is not None:
                 try:
                     source = source.getstatement(f.lineno, assertion=True)
                 except IndexError:
                     source = None
                 else:
                     source = str(source.deindent()).strip()
         except py.error.ENOENT:
             source = None
             # this can also occur during reinterpretation, when the
             # co_filename is set to "<run>".
         if source:
             self.msg = reinterpret(source, f, should_fail=True)
         else:
             self.msg = "<could not determine information>"
         if not self.args:
             self.args = (self.msg,)