]> granicus.if.org Git - python/commitdiff
bpo-33582: Remove duplicate space in inspect.formatargspec() deprecation warning...
authorZackery Spytz <zspytz@gmail.com>
Tue, 12 Jun 2018 03:16:18 +0000 (21:16 -0600)
committerNed Deily <nad@python.org>
Tue, 12 Jun 2018 03:16:18 +0000 (23:16 -0400)
Lib/inspect.py

index 238a36821c733ea46abb1411c0d462d03b53bdce..717518614fc6d7488962b245f818b944742a2e7e 100644 (file)
@@ -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)