Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8ad2ec commit 767a246Copy full SHA for 767a246
1 file changed
python/ql/test/experimental/library-tests/frameworks/stdlib/pep249.py
@@ -0,0 +1,8 @@
1
+import sqlite3
2
+db = sqlite3.connect("example.db")
3
+
4
+# non standard
5
+db.execute("some sql", (42,)) # $ MISSING: getSql="some sql"
6
7
+cursor = db.cursor()
8
+cursor.execute("some sql", (42,)) # $ MISSING: getSql="some sql"
0 commit comments