PyCG icon indicating copy to clipboard operation
PyCG copied to clipboard

Static Python call graph generator

Results 22 PyCG issues
Sort by recently updated
recently updated
newest added

Hey @gdrosos and @vitsalis , running the [pypi-plugin](https://github.com/fasten-project/fasten-pypi-plugin/tree/cg_generation_fixes) which uses `pycg` internally, for the packages `click:7.0` and `py:1.11.0`, the process of creating a Call Graph uses all my memory (16...

When I try to run a simple example on PyCG, it always raises exception `pycg.machinery.imports.ImportManagerError`. My setting is as follow: python version: `3.6.9` pycg commit: `99c991` I setup test directory...

Are there some examples that help explain the output produced by PyCG? My question is specifically about the two possible outputs from PyCG: (1) --as-graph-output AS_GRAPH_OUTPUT Output for the assignment...

Hello, very nice tool with plentry of potential IMHO! I was just wondering whether the order of the function call could be preserved? For instance for a function I would...

Hi there, writing the Fasten-PyPI-plugin, we would need to run pycg locally to analyze missing call graphs on the FASTEN server. Trying out the tool, I got with several packages...

When I was using PyCG to resolve [tensorflow](https://github.com/tensorflow/tensorflow), the following error occurred: **SyntaxError: (unicode error) \N escapes not supported (can't load unicodedata module)** More precisely, it looks like: > _Traceback...

repo:https://github.com/PaddlePaddle/PaddleClas cmd :pycg --package ppclas $(find ppclas -type f -name "*.py") -o ppclas.json error: funciton:ppcls/arch/backbone/base/theseus_layer.py is subclass paddle.nn.Layer the function train is from nn.Layer but the ppclas.json not show this...

Hello, I have read your work "PyCG: Practical Call Graph Generation in Python", and think it is valuable, helpful and insightful. However, when I try to scan this file as...

Hi, I encountered the following error when using PyCG to parse [tensorflow models](https://github.com/tensorflow/models): ### Original Error Description - **_AttributeError: 'NoneType' object has no attribute 'reset_counters'_** - The problem occurs in...

I do a Test and find pycg will generate uncomplete call graph. ![微信截图_20220105162917](https://user-images.githubusercontent.com/47975600/148185560-41685da0-8c6d-49eb-90eb-b4bbdb8bea27.png). First , the code of /test1/__init__.py is as following: ``` class People(): def __init__(self) -> None: pass...