We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad7dc81 commit bc339e4Copy full SHA for bc339e4
python/ql/lib/semmle/python/security/dataflow/StackTraceExposureQuery.qll
@@ -28,7 +28,7 @@ class Configuration extends TaintTracking::Configuration {
28
}
29
30
// A stack trace is accessible as the `__traceback__` attribute of a caught exception.
31
- // seehttps://docs.python.org/3/reference/datamodel.html#traceback-objects
+ // see https://docs.python.org/3/reference/datamodel.html#traceback-objects
32
override predicate isAdditionalTaintStep(DataFlow::Node nodeFrom, DataFlow::Node nodeTo) {
33
exists(DataFlow::AttrRead attr | attr.getAttributeName() = "__traceback__" |
34
nodeFrom = attr.getObject() and
0 commit comments