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 38fe45e commit ea26ac8Copy full SHA for ea26ac8
1 file changed
cpp/ql/src/CPython/Extensions.qll
@@ -77,11 +77,6 @@ class PythonClass extends Variable, CObject {
77
/* This needs to be kept in sync with extractor-python/semmle/passes/type.py */
78
result = "C_type$" + this.getTpName()
79
}
80
-
81
- /** Gets a textual representation of this element. */
82
- override string toString() {
83
- result = Variable.super.toString()
84
- }
85
86
87
/**
@@ -518,12 +513,6 @@ class PythonExtensionFunction extends Function {
518
513
519
514
520
515
class TypedPythonExtensionProperty extends PythonGetSetTableEntry, CObject {
521
522
- override
523
- string toString() {
524
- result = PythonGetSetTableEntry.super.toString()
525
526
527
516
PythonClass getPropertyType() {
528
517
result = py_return_type(this.getGetter())
529
0 commit comments