From d73ed524b737ffc767119ddcf77558ae07b84969 2016-06-06 21:33:58 From: Matthias Bussonnier Date: 2016-06-06 21:33:58 Subject: [PATCH] Reword deprecation warning. --- diff --git a/IPython/core/oinspect.py b/IPython/core/oinspect.py index 5045e23..d4a019d 100644 --- a/IPython/core/oinspect.py +++ b/IPython/core/oinspect.py @@ -695,7 +695,8 @@ class Inspector(Colorable): """DEPRECATED. Compute a dict with detailed information about an object. """ if formatter is not None: - warnings.warn('Inspector.info(formatter) keyword is deprecated as of IPython 5.0 and will have no effects.', + warnings.warn('The `formatter` keyword argument to `Inspector.info`' + 'is deprecated as of IPython 5.0 and will have no effects.', DeprecationWarning, stacklevel=2) return self._info(obj, oname=oname, info=info, detail_level=detail_level)