Print out wobbly words.

That have definition but no ref doc, or ref docs but no defs.
This commit is contained in:
sforman 2023-10-04 08:28:53 -07:00
parent 8c6d3dcff8
commit 69f32424a6
1 changed files with 11 additions and 3 deletions

View File

@ -260,6 +260,14 @@ print(html_string, file=open('../html/FuncRef.html', 'w'))
##import pprint ##import pprint
##pprint.pprint(crosslinks) ##pprint.pprint(crosslinks)
if non: ##if non:
for n in sorted(non): ## for n in sorted(non):
print(n) ## print(n)
D = set(definitions)
S = set(sections)
W = D - S
E = S - D - basis_functions
print('Def but no ref:', ' '.join(sorted(W)))
print('Ref but no def:', ' '.join(sorted(E)))