summaryrefslogtreecommitdiff
path: root/sphinx/util/inspect.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2020-02-14 12:08:52 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2020-02-14 12:08:52 +0900
commitbaf4c7df23b4b83ca18e88a8ccd785d2af878cf5 (patch)
tree5091c6793e32864ccd2f12cbb252ab0991ba1c97 /sphinx/util/inspect.py
parentf2ec4bfeb74d2f8861ce9d5d30f63ef18c3e079d (diff)
downloadsphinx-git-baf4c7df23b4b83ca18e88a8ccd785d2af878cf5.tar.gz
Deprecate sphinx.util.inspect.getargspec()
Diffstat (limited to 'sphinx/util/inspect.py')
-rw-r--r--sphinx/util/inspect.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/sphinx/util/inspect.py b/sphinx/util/inspect.py
index af8102402..80cac97d9 100644
--- a/sphinx/util/inspect.py
+++ b/sphinx/util/inspect.py
@@ -22,7 +22,7 @@ from inspect import ( # NOQA
from io import StringIO
from typing import Any, Callable, Mapping, List, Tuple
-from sphinx.deprecation import RemovedInSphinx40Warning
+from sphinx.deprecation import RemovedInSphinx40Warning, RemovedInSphinx50Warning
from sphinx.util import logging
from sphinx.util.typing import stringify as stringify_annotation
@@ -54,6 +54,8 @@ memory_address_re = re.compile(r' at 0x[0-9a-f]{8,16}(?=>)', re.IGNORECASE)
def getargspec(func):
"""Like inspect.getfullargspec but supports bound methods, and wrapped
methods."""
+ warnings.warn('sphinx.ext.inspect.getargspec() is deprecated',
+ RemovedInSphinx50Warning)
# On 3.5+, signature(int) or similar raises ValueError. On 3.4, it
# succeeds with a bogus signature. We want a TypeError uniformly, to
# match historical behavior.