]> granicus.if.org Git - python/commit
bpo-28814: Undeprecate inadvertently deprecated inspect functions. (#122) (#244)
authorBerker Peksag <berker.peksag@gmail.com>
Thu, 23 Feb 2017 15:45:57 +0000 (18:45 +0300)
committerNick Coghlan <ncoghlan@gmail.com>
Thu, 23 Feb 2017 15:45:57 +0000 (01:45 +1000)
commit0246422b974b1a0c50dd30b0e1a1138674ef87a5
tree0981b238131251dae5224f46eaa4a6dcee190d3b
parent5010a77a4da76d8d3fd861a63a7f1ce8f0e9c520
bpo-28814: Undeprecate inadvertently deprecated inspect functions. (#122) (#244)

Nick Coghlan said on bpo-28814:

> inspect.getargvalues() and inspect.formatargvalues() were deprecated
> in Python 3.5 as part of implementing bpo-20438

> This is incorrect, as these are *frame* introspection related functions,
> not callable introspection ones. The documentation and implementation
> layout is confusing though, as they're interleaved with the callable
> introspection operation

This commit undeprecates these functions and adds a note to ignore
previous deprecation notices.

(cherry picked from commit 0899b9809547ec2894dcf88cf4bba732c5d47d0d)
Doc/library/inspect.rst
Doc/whatsnew/3.5.rst