Files
codeql/python/ql/lib/change-notes/2023-11-07-class-attribute-flow.md
Rasmus Wriedt Larsen 5bee44dcfe Python: add change-note
2023-11-07 11:27:11 +01:00

5 lines
309 B
Markdown

---
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])`.