diff options
author | Zackery Spytz <zspytz@gmail.com> | 2018-06-12 03:16:18 (GMT) |
---|---|---|
committer | Ned Deily <nad@python.org> | 2018-06-12 03:16:18 (GMT) |
commit | 41254ebd5e4f40a2e095d8aaea60bf3973de4647 (patch) | |
tree | 117f21e827e610121e391d47b39bb04992480a2c /Lib/inspect.py | |
parent | 378edcd0006ce61f9255e7aeaa8755441225a380 (diff) | |
download | cpython-41254ebd5e4f40a2e095d8aaea60bf3973de4647.zip cpython-41254ebd5e4f40a2e095d8aaea60bf3973de4647.tar.gz cpython-41254ebd5e4f40a2e095d8aaea60bf3973de4647.tar.bz2 |
bpo-33582: Remove duplicate space in inspect.formatargspec() deprecation warning (GH-7655)
Diffstat (limited to 'Lib/inspect.py')
-rw-r--r-- | Lib/inspect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py index 238a368..7175186 100644 --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -1220,7 +1220,7 @@ def formatargspec(args, varargs=None, varkw=None, defaults=None, from warnings import warn warn("`formatargspec` is deprecated since Python 3.5. Use `signature` and " - " the `Signature` object directly", + "the `Signature` object directly", DeprecationWarning, stacklevel=2) |