| D | check-params-in-docs.py | 55 texi = ([x.strip() for x in open(args.texi_file).readlines()]) variable 56 texi = dropwhile(lambda x: 'item --param' not in x, texi) variable 57 texi = takewhile(lambda x: '@node Instrumentation Options' not in x, texi) variable 58 texi = list(texi)[1:] variable 61 for line in texi:
|