From f36944f9285b30d886779b33cd0dbe8e1e28e570 Mon Sep 17 00:00:00 2001 From: Zackery Spytz Date: Mon, 11 Jun 2018 20:39:01 -0600 Subject: [PATCH] bpo-33582: Remove duplicate space in inspect.formatargspec() deprecation warning --- Lib/inspect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/inspect.py b/Lib/inspect.py index 238a36821c733e..717518614fc6d7 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)