gak / pycallgraph

pycallgraph is a Python module that creates call graphs for Python programs.
GNU General Public License v2.0
1.82k stars 336 forks source link

ValueError: wrapper has not been initialised #180

Open brycepg opened 6 years ago

brycepg commented 6 years ago

I'm unable use pycall graph on the astroid module.

Steps to reproduce:

pip install astroid

from pycallgraph import PyCallGraph
from pycallgraph.output import GraphvizOutput

import astroid

graphviz = GraphvizOutput(output_file='filter_none.png')

with PyCallGraph(output=graphviz):
    next(astroid.extract_node("a=5; a").infer())

pycallgraph version: '1.0.1' wrapt version: '1.10.11'