This commit is contained in:
Waylon Walker 2022-03-31 20:20:07 -05:00
commit 38355d2442
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
9083 changed files with 1225834 additions and 0 deletions

36
.venv/bin/list-bad-xrefs Executable file
View file

@ -0,0 +1,36 @@
#!/home/walkers/git/creeper-adventure/.venv/bin/python3
"""
Usage: list-bad-xrefs modules... filenames...
Prints the bad docstring cross-references in the given modules.
Similar to running C{epydoc -v}, but:
- The output is organized so that it is easy to identify the code needing
fixing.
- If a cross-reference is to an external module, its references are included
automatically.
"""
# pyflyby/list-bad-xrefs
# Copyright (C) 2011, 2014 Karl Chen.
# License: MIT http://opensource.org/licenses/MIT
from __future__ import absolute_import, division, with_statement
from __future__ import print_function
from pyflyby._cmdline import parse_args, syntax
from pyflyby._docxref import find_bad_doc_cross_references
def main():
options, args = parse_args()
if not args:
syntax()
for rec in find_bad_doc_cross_references(args):
module, linenos, container_name, identifier = rec
for lineno in linenos or ["?"]:
print("%s:%s: undefined docstring cross-reference in %s: %s" % (
module.filename, lineno, container_name, identifier))
if __name__ == '__main__':
main()