Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python/ql/src/semmle/python/objects/ObjectAPI.qll
Original file line number Diff line number Diff line change
Expand Up @@ -384,12 +384,12 @@ class ClassValue extends Value {
Types::failedInference(this, reason)
}

/** Gets the nth base class of this class */
/** Gets the nth immediate base type of this class. */
ClassValue getBaseType(int n) {
result = Types::getBase(this, n)
}

/** Gets a base class of this class */
/** Gets an immediate base type of this class. */
ClassValue getABaseType() {
result = Types::getBase(this, _)
}
Expand Down