1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836
|
#!/usr/bin/env python3
#
# utils.py
"""
General utility functions.
"""
#
# Copyright © 2020-2021 Dominic Davis-Foster <dominic@davis-foster.co.uk>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
# OR OTHER DEALINGS IN THE SOFTWARE.
#
# singleton function based on attrs
# https://github.com/python-attrs/attrs
# Copyright (c) 2015 Hynek Schlawack
# MIT Licensed
#
# stdlib
import atexit
import functools
import re
import sys
from typing import (
TYPE_CHECKING,
Any,
Callable,
Dict,
Iterable,
List,
Mapping,
Optional,
Pattern,
Set,
Tuple,
Type,
TypeVar,
cast
)
# 3rd party
import sphinx.config
from apeye.requests_url import RequestsURL
from docutils.nodes import Node
from domdf_python_tools.doctools import prettify_docstrings
from sphinx.addnodes import desc_content
from sphinx.application import Sphinx
from sphinx.environment import BuildEnvironment
from sphinx.ext.autodoc import Documenter, logger
from sphinx.locale import __
from typing_extensions import TypedDict
__all__ = (
"add_nbsp_substitution",
"allow_subclass_add",
"baseclass_is_private",
"code_repr",
"escape_trailing__",
"filter_members_warning",
"flag",
"get_first_matching",
"GITHUB_COM",
"is_namedtuple",
"make_github_url",
"metadata_add_version",
"NoMatchError",
"OptionSpec",
"Param",
"parse_parameters",
"Purger",
"SetupFunc",
"SphinxExtMetadata",
"typed_flag_regex",
"typed_param_regex",
"unknown_module_warning",
"untyped_param_regex",
"add_fallback_css_class",
)
#: Instance of :class:`apeye.requests_url.RequestsURL` that points to the GitHub website.
GITHUB_COM: RequestsURL = RequestsURL("https://github.com")
#: Type hint for the ``option_spec`` variable of Docutils directives.
OptionSpec = Mapping[str, Callable[[str], Any]]
_T = TypeVar("_T")
atexit.register(GITHUB_COM.session.close)
@functools.lru_cache()
def make_github_url(username: str, repository: str) -> RequestsURL:
"""
Construct a URL to a GitHub repository from a username and repository name.
:param username: The username of the GitHub account that owns the repository.
:param repository: The name of the repository.
"""
return GITHUB_COM / username / repository
def flag(argument: Any) -> bool:
"""
Check for a valid flag option (no argument) and return :py:obj:`True`.
Used in the ``option_spec`` of directives.
.. seealso::
:class:`docutils.parsers.rst.directives.flag`, which returns :py:obj:`None` instead of :py:obj:`True`.
:raises: :exc:`ValueError` if an argument is given.
"""
if argument and argument.strip():
raise ValueError(f"No argument is allowed; {argument!r} supplied")
else:
return True
@prettify_docstrings
class Purger:
"""
Class to purge redundant nodes.
:param attr_name: The name of the build environment's attribute that stores the list of nodes,
e.g. ``all_installation_nodes``.
.. autosummary-widths:: 55/100
"""
def __init__(self, attr_name: str):
self.attr_name = str(attr_name)
def __repr__(self) -> str:
return f"{self.__class__.__name__}({self.attr_name!r})"
def purge_nodes( # pragma: no cover
self,
app: Sphinx,
env: BuildEnvironment,
docname: str,
) -> None:
"""
Remove all redundant nodes.
This function can be configured for the :event:`env-purge-doc` event:
.. code-block::
my_node_purger = Purger("all_my_node_nodes")
def setup(app: Sphinx):
app.connect("env-purge-doc", my_node_purger.purge_nodes)
:param app: The Sphinx application.
:param env: The Sphinx build environment.
:param docname: The name of the document to remove nodes for.
"""
if not hasattr(env, self.attr_name):
return
all_nodes = [todo for todo in getattr(env, self.attr_name) if todo["docname"] != docname]
setattr(env, self.attr_name, all_nodes)
def get_outdated_docnames(
self,
app: Sphinx,
env: BuildEnvironment,
added: Set[str],
changed: Set[str],
removed: Set[str],
) -> List[str]:
"""
Returns a list of all docnames containing one or more nodes this :class:`~.Purger` is aware of.
This function can be configured for the :event:`env-get-outdated` event:
.. code-block::
my_node_purger = Purger("all_my_node_nodes")
def setup(app: Sphinx):
app.connect("env-get-outdated", my_node_purger.get_outdated_docnames)
.. versionadded:: 2.7.0
:param app: The Sphinx application.
:param env: The Sphinx build environment.
:param added: A set of newly added documents.
:param changed: A set of document names whose content has changed.
:param removed: A set of document names which have been removed.
"""
if not hasattr(env, self.attr_name):
return []
return list({todo["docname"] for todo in getattr(env, self.attr_name)})
def add_node(self, env: BuildEnvironment, node: Node, targetnode: Node, lineno: int) -> None:
"""
Add a node.
:param env: The Sphinx build environment.
:param node:
:param targetnode:
:param lineno:
"""
if not hasattr(env, self.attr_name):
setattr(env, self.attr_name, [])
all_nodes = getattr(env, self.attr_name)
all_nodes.append({
"docname": env.docname,
"lineno": lineno,
"installation_node": node.deepcopy(),
"target": targetnode,
})
def singleton(name: str) -> object:
"""
Factory function to return a string singleton.
:param name: The name of the singleton.
"""
name = str(name)
class Singleton:
_singleton = None
def __new__(cls):
if Singleton._singleton is None:
Singleton._singleton = super().__new__(cls)
return Singleton._singleton
def __repr__(self) -> str:
return name
def __str__(self) -> str:
return name
Singleton.__name__ = name
Singleton.__doc__ = f"Singleton {name}"
return Singleton()
no_default = singleton("no_default")
class NoMatchError(ValueError):
"""
Raised when no matching values were found in :func:`~.get_first_matching`.
.. versionadded:: 0.7.0
"""
def get_first_matching(
condition: Callable[[Any], bool],
iterable: Iterable[_T],
default: _T = no_default # type: ignore[assignment]
) -> _T:
"""
Returns the first value in ``iterable`` that meets ``condition``, or ``default`` if none match.
.. versionadded:: 0.7.0
:param condition: The condition to evaluate.
:param iterable:
:param default: The default value to return if no values in ``iterable`` match.
"""
if default is not no_default:
if not condition(default):
raise ValueError("The condition must evaluate to True for the default value.")
iterable = (*iterable, default)
for match in iterable:
if condition(match):
return match
raise NoMatchError(f"No matching values for '{condition}' in {iterable}")
def escape_trailing__(string: str) -> str:
"""
Returns the given string with trailing underscores escaped to prevent Sphinx treating them as references.
.. versionadded:: 0.8.0
:param string:
"""
if string.endswith('_'):
return f"{string[:-1]}\\_"
return string
def code_repr(obj: Any) -> str:
"""
Returns the repr of the given object as reStructuredText inline code.
.. versionadded:: 0.9.0
:param obj:
"""
return f"``{obj!r}``"
class SphinxExtMetadata(TypedDict, total=False):
"""
:class:`typing.TypedDict` representing the metadata dictionary returned by
Sphinx extensions' ``setup`` functions.
This is treated by Sphinx as metadata of the extension.
""" # noqa: D400
version: str
"""
A string that identifies the extension version.
It is used for extension version requirement checking and informational purposes.
If not given, ``'unknown version'`` is substituted.
"""
env_version: int
"""
An integer that identifies the version of env data structure if the extension stores any data to environment.
It is used to detect the data structure has been changed from last build.
Extensions have to increment the version when data structure has changed.
If not given, Sphinx considers the extension does not stores any data to environment.
"""
parallel_read_safe: bool
"""
A boolean that specifies if parallel reading of source files can be used when the extension is loaded.
It defaults to :py:obj:`False`, i.e. you have to explicitly specify your extension
to be parallel-read-safe after checking that it is.
"""
parallel_write_safe: bool
"""
A boolean that specifies if parallel writing of output files can be used when the extension is loaded.
Since extensions usually don’t negatively influence the process, this defaults to :py:obj:`True`.
"""
SetupFunc = Callable[[Sphinx], Optional[SphinxExtMetadata]]
"""
Type annotation for Sphinx extensions' ``setup`` functions.
.. versionadded:: 1.9.0
"""
def unknown_module_warning(documenter: Documenter) -> None:
"""
Log a warning that the module to import the object from is unknown.
.. versionadded:: 0.2.0
:param documenter:
"""
msg = __(
"don't know which module to import for autodocumenting %r "
'(try placing a "module" or "currentmodule" directive in the document, '
"or giving an explicit module name)"
)
logger.warning(msg % documenter.name, type="autodoc")
def filter_members_warning(member: Any, exception: Exception) -> None:
"""
Log a warning when filtering members.
.. versionadded:: 0.2.0
:param member:
:param exception:
"""
logger.warning(
__("autodoc: failed to determine %r to be documented, the following exception was raised:\n%s"),
member,
exception,
type="autodoc"
)
class Param(TypedDict):
"""
:class:`~typing.TypedDict` to represent a parameter parsed from a class or function's docstring.
.. versionadded:: 0.8.0
"""
#: The docstring of the parameter.
doc: List[str]
#: The type of the parameter.
type: str # noqa: A003 # pylint: disable=redefined-builtin
_identifier_pattern = r"[A-Za-z_]\w*"
typed_param_regex: Pattern[str] = re.compile(
fr"^:(param|parameter|arg|argument)\s*({_identifier_pattern}\s+)({_identifier_pattern}\s*):\s*(.*)",
flags=re.ASCII,
)
"""
Regex to match ``:param <type> <name>: <docstring>`` flags.
.. versionadded:: 0.8.0
"""
untyped_param_regex: Pattern[str] = re.compile(
fr"^:(param|parameter|arg|argument)\s*({_identifier_pattern}\s*):\s*(.*)",
flags=re.ASCII,
)
"""
Regex to match ``:param <name>: <docstring>`` flags.
.. versionadded:: 0.8.0
"""
typed_flag_regex: Pattern[str] = re.compile(
fr"^:(paramtype|type)\s*({_identifier_pattern}\s*):\s*(.*)",
flags=re.ASCII,
)
"""
Regex to match ``:type <name>: <type>`` flags.
.. versionadded:: 0.8.0
"""
def parse_parameters(lines: List[str], tab_size: int = 8) -> Tuple[Dict[str, Param], List[str], List[str]]:
"""
Parse parameters from the docstring of a class/function.
.. versionadded:: 0.8.0
:param lines: The lines of the docstring
:param tab_size:
:return: A mapping of parameter names to their docstrings and types, a list of docstring lines that
appeared before the parameters, and the list of docstring lines that appear after the parameters.
"""
a_tab = ' ' * tab_size
params: Dict[str, Param] = {}
last_arg: Optional[str] = None
pre_output: List[str] = []
post_output: List[str] = []
def add_empty(param_name: str) -> None:
if param_name not in params:
params[param_name] = {"doc": [], "type": ''}
for line in lines:
if post_output:
post_output.append(line)
continue
# pylint: disable=loop-global-usage
typed_m = typed_param_regex.match(line)
untyped_m = untyped_param_regex.match(line)
type_only_m = typed_flag_regex.match(line)
# pylint: enable=loop-global-usage
if typed_m:
last_arg = typed_m.group(3).strip()
add_empty(cast(str, last_arg))
params[last_arg]["doc"] = [typed_m.group(4)]
params[last_arg]["type"] = typed_m.group(2).strip()
elif untyped_m:
last_arg = untyped_m.group(2).strip()
add_empty(cast(str, last_arg))
params[last_arg]["doc"] = [untyped_m.group(3)]
elif type_only_m:
add_empty(type_only_m.group(2))
params[type_only_m.group(2)]["type"] = type_only_m.group(3)
elif line.startswith(a_tab) and last_arg is not None:
params[last_arg]["doc"].append(line)
elif last_arg is None:
pre_output.append(line)
else:
post_output.append(line)
return params, pre_output, post_output
def is_namedtuple(obj: Any) -> bool:
"""
Returns whether the given object is a :func:`collections.namedtuple` class.
.. versionadded:: 0.8.0
:param obj:
"""
return isinstance(obj, type) and issubclass(obj, tuple) and hasattr(obj, "_fields")
def allow_subclass_add(app: Sphinx, *documenters: Type[Documenter]) -> None:
"""
Add the given autodocumenters, but only if a subclass of it is not already registered.
This allows other libraries to extend the autodocumenters.
.. versionadded:: 0.8.0
:param app: The Sphinx application.
:param documenters:
"""
for cls in documenters:
existing_documenter = app.registry.documenters.get(cls.objtype)
if existing_documenter is None or not issubclass(existing_documenter, cls):
app.add_autodocumenter(cls, override=True)
def baseclass_is_private(obj: Type) -> bool:
"""
Returns :py:obj:`True` if the first and only base class starts with a double underscore.
:param obj:
"""
if hasattr(obj, "__bases__") and len(obj.__bases__) == 1:
return obj.__bases__[0].__name__.startswith("__")
return False
def metadata_add_version(func: SetupFunc) -> SetupFunc:
"""
Internal decorator for Sphinx ``setup`` functions to add the ``sphinx-toolbox``
version number to the returned metadata dict.
.. versionadded:: 1.9.0
:param func:
""" # noqa: D400
@functools.wraps(func)
def wrapper(app: Sphinx) -> SphinxExtMetadata:
# this package
from sphinx_toolbox import __version__
ret = func(app) or {}
ret["version"] = __version__
return ret
return wrapper
def add_nbsp_substitution(config: sphinx.config.Config) -> None:
"""
Adds the ``|nbsp|`` substitution directive to the reStructuredText prolog.
.. versionadded:: 2.1.0
:param config:
"""
nbsp_sub = ".. |nbsp| unicode:: 0xA0\n :trim:"
if not config.rst_prolog:
config.rst_prolog = '' # type: ignore[attr-defined]
if nbsp_sub not in config.rst_prolog:
config.rst_prolog = '\n'.join([config.rst_prolog, '', nbsp_sub]) # type: ignore[attr-defined]
_OBJTYPES_CSS_FALLBACKS = {
"namedtuple": "class",
"protocol": "class",
"typeddict": "class",
}
# From https://github.com/mansenfranzen/autodoc_pydantic/pull/86/files
# MIT Licensed
# Copyright (c) 2021 Franz Wöllert
def add_fallback_css_class(
objtypes_css_fallbacks: Dict[str, str]
) -> Callable[[Sphinx, str, str, desc_content], None]:
"""
Registers a transform which will edit the CSS classes of documented objects based on their ``objtype``.
:param objtypes_css_fallbacks: A mapping of Sphinx objtypes to the CSS class which should be added to them.
The class is usually the ``objtype`` attribute from the documenter's parent class.
.. versionadded:: 2.16.0
Used as follows:
.. code-block:: python
app.connect("object-description-transform", add_fallback_css_class({"typeddict": "class"}))
This will apply the transformation to documented objects with the ``typeddict`` CSS class
by adding the ``class`` CSS class.
:param objtypes_css_fallbacks:
"""
def func(
app: Sphinx,
domain: str,
objtype: str,
contentnode: desc_content,
) -> None:
if objtype not in objtypes_css_fallbacks:
return
classes = contentnode.parent.attributes["classes"]
# for older sphinx versions, add objtype explicitly
if sphinx.version_info < (3, 6):
classes.append(objtype)
idx = classes.index(objtype)
fallback = objtypes_css_fallbacks[objtype]
classes.insert(idx, fallback)
return func
if TYPE_CHECKING:
class Config(sphinx.config.Config):
project: Any
author: Any
project_copyright: str
copyright: str # noqa: A003 # pylint: disable=redefined-builtin
version: Any
release: Any
today: Any
today_fmt: str
language: str
locale_dirs: Any
figure_language_filename: str
gettext_allow_fuzzy_translations: Any
master_doc: Any
root_doc: Any
source_suffix: Any
source_encoding: Any
exclude_patterns: Any
default_role: str
add_function_parentheses: Any
add_module_names: Any
trim_footnote_reference_space: Any
show_authors: Any
pygments_style: Any
highlight_language: Any
highlight_options: Any
templates_path: Any
template_bridge: Any
keep_warnings: Any
suppress_warnings: Any
modindex_common_prefix: Any
rst_epilog: str
rst_prolog: str
trim_doctest_flags: Any
primary_domain: Any
needs_sphinx: str
needs_extensions: Any
manpages_url: Any
nitpicky: Any
nitpick_ignore: Any
nitpick_ignore_regex: Any
numfig: Any
numfig_secnum_depth: Any
numfig_format: Any
math_number_all: Any
math_eqref_format: str
math_numfig: Any
tls_verify: Any
tls_cacerts: Any
user_agent: str
smartquotes: Any
smartquotes_action: Any
smartquotes_excludes: Any
config_values: Dict[str, Tuple]
overrides: Dict
values: Dict[str, Tuple]
setup: Optional[Callable]
extensions: List[str]
latex_engine: str
latex_documents: Any
latex_logo: str
latex_appendices: Any
latex_use_latex_multicolumn: Any
latex_use_xindy: bool
latex_toplevel_sectioning: str
latex_domain_indices: List
latex_show_urls: Any
latex_show_pagerefs: Any
latex_elements: Any
latex_additional_files: Any
latex_theme: str
latex_theme_options: Any
latex_theme_path: Any
latex_docclass: Any
html_theme: Any
html_theme_path: Any
html_theme_options: Any
html_title: str
html_short_title: Any
html_style: str
html_logo: str
html_favicon: str
html_css_files: Any
html_js_files: Any
html_static_path: Any
html_extra_path: Any
html_last_updated_fmt: str
html_sidebars: Any
html_additional_pages: Any
html_domain_indices: List
html_add_permalinks: Any
html_permalinks: Any
html_permalinks_icon: Any
html_use_index: Any
html_split_index: Any
html_copy_source: Any
html_show_sourcelink: Any
html_sourcelink_suffix: Any
html_use_opensearch: Any
html_file_suffix: str
html_link_suffix: str
html_show_copyright: Any
html_show_search_summary: Any
html_show_sphinx: Any
html_context: Any
html_output_encoding: Any
html_compact_lists: Any
html_secnumber_suffix: Any
html_search_language: str
html_search_options: Any
html_search_scorer: Any
html_scaled_image_link: Any
html_baseurl: Any
html_codeblock_linenos_style: str
html_math_renderer: Any
html4_writer: Any
else:
Config = sphinx.config.Config
if sphinx.version_info[0] >= 5 or TYPE_CHECKING: # pragma no cover
class RemovedInSphinx50Warning(RuntimeError):
pass
def prepare_docstring(s: str, ignore: Optional[int] = None, tabsize: int = 8) -> List[str]:
if ignore is None:
ignore = 1
else:
raise TypeError("The 'ignore' argument to prepare_docstring() was removed in Sphinx 5.0")
lines = s.expandtabs(tabsize).splitlines()
# Find minimum indentation of any non-blank lines after ignored lines.
margin = sys.maxsize
for line in lines[ignore:]:
content = len(line.lstrip())
if content:
indent = len(line) - content
margin = min(margin, indent)
# Remove indentation from ignored lines.
for i in range(ignore):
if i < len(lines):
lines[i] = lines[i].lstrip()
if margin < sys.maxsize:
for i in range(ignore, len(lines)):
lines[i] = lines[i][margin:]
# Remove any leading blank lines.
while lines and not lines[0]:
lines.pop(0)
# make sure there is an empty line at the end
if lines and lines[-1]:
lines.append('')
return lines
else:
# 3rd party
from sphinx.deprecation import RemovedInSphinx50Warning # type: ignore[attr-defined,no-redef] # noqa: F401
from sphinx.util.docstrings import prepare_docstring # noqa: F401
|