MCPcopy
hub / github.com/pandas-dev/pandas / remove_flags_docstring

Function remove_flags_docstring

doc/source/conf.py:715–717  ·  view source on GitHub ↗
(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)
715def remove_flags_docstring(app, what, name, obj, options, lines) -> None:
716 if what == "attribute" and name.endswith(".flags"):
717 del lines[:]
718
719
720def process_class_docstrings(app, what, name, obj, options, lines) -> None:

Callers

nothing calls this directly

Calls 1

endswithMethod · 0.80

Tested by

no test coverage detected