Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions Doc/using/configure.rst
Original file line number Diff line number Diff line change
Expand Up @@ -813,6 +813,17 @@ also be used to improve performance.

See the ``PyDoc_STRVAR()`` macro.

.. note::

Disabling doc strings also means that :func:`inspect.signature` cannot
retrieve signatures for built-in functions and methods implemented in C,
since the signatures for these functions are embedded in their docstrings
(generated by `Argument Clinic
<https://devguide.python.org/development-tools/clinic/>`_). This may
affect tools and libraries that rely on introspecting built-in callables,
such as :func:`help` and some third-party frameworks.


.. option:: --enable-profiling

Enable C-level code profiling with ``gprof`` (disabled by default).
Expand Down
Loading