# drawgraph_issues_12 **Repository Path**: phpgogo/draw-graph_issues_12 ## Basic Information - **Project Name**: drawgraph_issues_12 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-01-21 - **Last Updated**: 2025-01-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [BugReport]解析python代码,函数调用关系不完整 https://github.com/LinWanCen/draw-graph/issues/12 复现此问题的代码 Python版本 3.6(应该和这个版本没有关系) 使用步骤 1.在service/preset.py文件的test1函数,鼠标右键方法调用图 从代码中可以看到 test1调用了 test2和test3 但是生成的调用关系中,只出现了test1->test3函数,看不到test2 区别在于 test是通过from import导入的 我当前的这个项目中,不同层级之间的函数调用,都是通过from import导入的 分层结构为 api->service->dao->hw(硬件交互层)