Python: Prepare for autoformatting.

Mostly fixes up a bunch of comments that were made wonky by the autoformatter.
This commit is contained in:
Taus Brock-Nannestad
2020-03-18 13:59:38 +01:00
parent 84a74f406a
commit 57af7b84aa
33 changed files with 194 additions and 193 deletions

View File

@@ -22,8 +22,8 @@ predicate multiple_calls_to_superclass_method(ClassObject self, FunctionObject m
multiple_invocation_paths(top, i1, i2, multi) and
top.runtime(self.declaredAttribute(name)) and
self.getASuperType().declaredAttribute(name) = multi |
/* Only called twice if called from different functions,
* or if one call-site can reach the other */
// Only called twice if called from different functions,
// or if one call-site can reach the other.
i1.getCall().getScope() != i2.getCall().getScope()
or
i1.getCall().strictlyReaches(i2.getCall())