This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author hugovk
Recipients hugovk
Date 2021-09-29.12:22:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1632918150.03.0.388631628057.issue45320@roundup.psfhosted.org>
In-reply-to
Content
inspect.getargspec was deprecated in docs since 3.0 (https://docs.python.org/3.0/library/inspect.html?highlight=getargspec#inspect.getargspec), raising a DeprecationWarning since 3.5 (bpo-20438, https://github.com/python/cpython/commit/3cfec2e2fcab9f39121cec362b78ac235093ca1c).

inspect.formatargspec was deprecated in docs since 3.5 (https://docs.python.org/3.5/library/inspect.html?highlight=getargspec#inspect.formatargspec), raising a DeprecationWarning since 3.8 (bpo-33582, https://github.com/python/cpython/commit/46c5cd0f6e22bdfbdd3f0b18f1d01eda754e7e11).

Undocumented inspect.Signature.from_function and inspect.Signature.from_builtin in docs and by raising a DeprecationWarning since 3.5 (bpo-20438, https://github.com/python/cpython/commit/3cfec2e2fcab9f39121cec362b78ac235093ca1c).

These can be removed in Python 3.11.
History
Date User Action Args
2021-09-29 12:22:30hugovksetrecipients: + hugovk
2021-09-29 12:22:30hugovksetmessageid: <1632918150.03.0.388631628057.issue45320@roundup.psfhosted.org>
2021-09-29 12:22:30hugovklinkissue45320 messages
2021-09-29 12:22:29hugovkcreate