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 bdc4808 commit eb32cbeCopy full SHA for eb32cbe
python/ql/lib/semmle/python/frameworks/Stdlib.qll
@@ -1492,6 +1492,9 @@ module StdlibPrivate {
1492
or
1493
// io.open is a special case, since it is an alias for the builtin `open`
1494
result = API::moduleImport("io").getMember("open")
1495
+ or
1496
+ // similarly, coecs.open calls the builtin `open`: https://github.com/python/cpython/blob/3.12/Lib/codecs.py#L918
1497
+ result = API::moduleImport("codecs").getMember("open")
1498
}
1499
1500
/**
0 commit comments