Flag specific macro arguments that have no typechecking with suffix ?
This commit is contained in:
parent
ba1eb08519
commit
e66a6eacf6
1 changed files with 3 additions and 0 deletions
|
@ -259,6 +259,9 @@ class CrossRefLister(CrossRef):
|
|||
defcount += 1
|
||||
callcount += len(defn.references)
|
||||
if None in map(formaltype, defn.args):
|
||||
for (i, d) in enumerate(defn.args):
|
||||
if formaltype(d) is None:
|
||||
defn.args[i] += "?"
|
||||
unchecked.append((name, defn))
|
||||
unresolvedcount += len(defn.references)
|
||||
if unchecked:
|
||||
|
|
Loading…
Add table
Reference in a new issue