Python: add change-note

This commit is contained in:
Rasmus Wriedt Larsen
2023-11-07 11:27:11 +01:00
parent 6568332e3d
commit 5bee44dcfe

View File

@@ -0,0 +1,4 @@
---
category: minorAnalysis
---
* Added basic flow for attributes defined on classes, when the attribute lookup is on a direct reference to that class (so not instance, cls parameter, or self parameter). Example: class definition `class Foo: my_tuples = (dangerous, safe)` and usage `SINK(Foo.my_tuples[0])`.