pycallgraph icon indicating copy to clipboard operation
pycallgraph copied to clipboard

ValueError: wrapper has not been initialised

Open brycepg opened this issue 6 years ago • 0 comments

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'

brycepg avatar Mar 11 '18 09:03 brycepg