Function
remove_flags_docstring
(app, what, name, obj, options, lines)
Source from the content-addressed store, hash-verified
| 713 | # remove the docstring of the flags attribute (inherited from numpy ndarray) |
| 714 | # because these give doc build errors (see GH issue 5331) |
| 715 | def remove_flags_docstring(app, what, name, obj, options, lines) -> None: |
| 716 | if what == "attribute" and name.endswith(".flags"): |
| 717 | del lines[:] |
| 718 | |
| 719 | |
| 720 | def process_class_docstrings(app, what, name, obj, options, lines) -> None: |
Callers
nothing calls this directly
Tested by
no test coverage detected