Files
codeql/python/ql/lib/change-notes/released/0.11.3.md
2023-11-16 13:07:16 +00:00

321 B

0.11.3

Minor Analysis Improvements

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