method: code.Traceback.__init__

*Not documented*
    def __init__(self, tb):

origin: code.Traceback

where:

function source:

def __init__(self, tb):
    if hasattr(tb, 'tb_next'):
        def f(cur): 
            while cur is not None: 
                yield self.Entry(cur)
                cur = cur.tb_next 
        list.__init__(self, f(tb)) 
    else:
        list.__init__(self, tb)

call sites:

called in /home/johnny/projects/merlinux/py/dist/py/code/excinfo.py

traceback code.Traceback.__init__.0

called in /home/johnny/projects/merlinux/py/dist/py/code/excinfo.py

traceback code.Traceback.__init__.1

called in /home/johnny/projects/merlinux/py/dist/py/code/traceback2.py

traceback code.Traceback.__init__.2

called in /home/johnny/projects/merlinux/py/dist/py/code/excinfo.py

traceback code.Traceback.__init__.3

called in /home/johnny/projects/merlinux/py/dist/py/code/excinfo.py

traceback code.Traceback.__init__.4

called in /home/johnny/projects/merlinux/py/dist/py/code/excinfo.py

traceback code.Traceback.__init__.5

called in /home/johnny/projects/merlinux/py/dist/py/code/excinfo.py

traceback code.Traceback.__init__.6

called in /home/johnny/projects/merlinux/py/dist/py/code/traceback2.py

traceback code.Traceback.__init__.7

called in /home/johnny/projects/merlinux/py/dist/py/code/excinfo.py

traceback code.Traceback.__init__.8

called in /home/johnny/projects/merlinux/py/dist/py/code/traceback2.py

traceback code.Traceback.__init__.9

called in /home/johnny/projects/merlinux/py/dist/py/code/excinfo.py

traceback code.Traceback.__init__.10

called in /home/johnny/projects/merlinux/py/dist/py/code/excinfo.py

traceback code.Traceback.__init__.11

called in /home/johnny/projects/merlinux/py/dist/py/code/excinfo.py

traceback code.Traceback.__init__.12

called in /home/johnny/projects/merlinux/py/dist/py/code/traceback2.py

traceback code.Traceback.__init__.13

called in /home/johnny/projects/merlinux/py/dist/py/code/excinfo.py

traceback code.Traceback.__init__.14

called in /home/johnny/projects/merlinux/py/dist/py/code/traceback2.py

traceback code.Traceback.__init__.15

called in /home/johnny/projects/merlinux/py/dist/py/code/excinfo.py

traceback code.Traceback.__init__.16

called in /home/johnny/projects/merlinux/py/dist/py/code/excinfo.py

traceback code.Traceback.__init__.17

called in /home/johnny/projects/merlinux/py/dist/py/code/excinfo.py

traceback code.Traceback.__init__.18

called in /home/johnny/projects/merlinux/py/dist/py/code/excinfo.py

traceback code.Traceback.__init__.19

called in /home/johnny/projects/merlinux/py/dist/py/code/excinfo.py

traceback code.Traceback.__init__.20