diff -r 2d33cbf02522 Lib/inspect.py --- a/Lib/inspect.py Tue Apr 15 14:24:53 2014 +0100 +++ b/Lib/inspect.py Tue Apr 15 11:45:32 2014 -0400 @@ -948,8 +948,11 @@ 'annotations' is a dictionary mapping argument names to annotations. The first four items in the tuple correspond to getargspec(). + + .. deprecated:: 3.5 + Use inspect.signature() instead of inspect.getfullargspec(). """ - + warnings.warn("Use inspect.signature() instead of inspect.getfullargspec()", DeprecationWarning) try: # Re: `skip_bound_arg=False` #