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.
2 parents af1bfb2 + 752615f commit 3f3b0e5Copy full SHA for 3f3b0e5
python/ql/src/semmle/python/Exprs.qll
@@ -671,7 +671,7 @@ class Name extends Name_ {
671
v = this.getVariable()
672
}
673
674
- /** Whether this expression is a definition */
+ /** Whether this expression is a deletion */
675
predicate isDeletion() {
676
py_expr_contexts(_, 2, this)
677
python/ql/src/semmle/python/objects/ObjectAPI.qll
@@ -572,7 +572,7 @@ module ClassValue {
572
573
/** Get the `ClassValue` for the `float` class. */
574
ClassValue float_() {
575
- result = TBuiltinClassObject(Builtin::builtin("float"))
+ result = TBuiltinClassObject(Builtin::special("float"))
576
577
578
/** Get the `ClassValue` for the `bytes` class (also called `str` in Python 2). */
0 commit comments