Python: Add change-note

This commit is contained in:
Rasmus Wriedt Larsen
2023-12-08 11:44:18 +01:00
parent fa3e16adea
commit a9a0216c43

View File

@@ -0,0 +1,4 @@
---
category: minorAnalysis
---
* Captured subclass relationships ahead-of-time for most popular PyPI packages so we are able to resolve subclass relation ships even without having the packages installed. For example we have captured that `flask_restful.Resource` is a subclass of `flask.views.MethodView`, so our Flask modeling will still consider a function named `post` on a `class Foo(flask_restful.Resource):` as a HTTP request handler.