python-sdk v1.4.2 #10
rahlk
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
CLDK python-sdk v1.4.2
A one-fix patch release. No breaking changes — drop-in upgrade.
🐛 Fixed
Intra-class method calls resolve to the method again. Upgrading the bundled analyzer to
codeanalyzer-python0.3.1 fixes callee resolution forself._method(...)calls: the Python call graph previously pointed such edges at the class node instead of the target method — silently truncating call chains at their deepest hop (and sometimes omitting receiver-method edges entirely). Call-sitecallee_signaturenow names the actual method, andPyCallsitegains an additiveargumentsfield describing call arguments. If you do reachability or caller/callee analysis over Python code with intra-class calls (most real code), your graphs get materially more complete with this upgrade.Upgrade
Full details: CHANGELOG · GitHub release · upstream fix: codeanalyzer-python#94
Beta Was this translation helpful? Give feedback.
All reactions