autodoc: The default of autodoc_typehints_format becomes to 'smart'

The default value of autodoc_typehints_format configuration is changed
to `'smart'`.  It will suppress the leading module names of typehints
(ex. `io.StringIO` -> `StringIO`).

refs: #9075
This commit is contained in:
Takeshi KOMIYA
2022-01-01 19:37:42 +09:00
parent 6f707a0944
commit 616f112e6a
11 changed files with 45 additions and 38 deletions

View File

@@ -30,6 +30,10 @@ Deprecated
Features added
--------------
* #9075: autodoc: The default value of :confval:`autodoc_typehints_format` is
changed to ``'smart'``. It will suppress the leading module names of
typehints (ex. ``io.StringIO`` -> ``StringIO``).
Bugs fixed
----------