Issue 28814: Deprecation notice on inspect.getargvalues() is incorrect (original) (raw)

Issue28814

This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/73000

classification

Title: Deprecation notice on inspect.getargvalues() is incorrect
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.7, Python 3.6, Python 3.5

process

Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: berker.peksag, docs@python, mbussonn, ncoghlan, yselivanov
Priority: normal Keywords:

Created on 2016-11-27 13:07 by ncoghlan, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 122 merged mbussonn,2017-02-15 16:54
PR 243 merged berker.peksag,2017-02-22 22:08
PR 244 merged berker.peksag,2017-02-22 22:10
Messages (6)
msg281824 - (view) Author: Alyssa Coghlan (ncoghlan) * (Python committer) Date: 2016-11-27 13:07
inspect.getargvalues() and inspect.formatargvalues() were deprecated in Python 3.5 as part of implementing issue 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 operations.
msg288333 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2017-02-22 05:45
New changeset 0899b9809547ec2894dcf88cf4bba732c5d47d0d by Berker Peksag in branch 'master': bpo-28814: Undeprecate inadvertently deprecated inspect functions. (#122) https://github.com/python/cpython/commit/0899b9809547ec2894dcf88cf4bba732c5d47d0d
msg288456 - (view) Author: Alyssa Coghlan (ncoghlan) * (Python committer) Date: 2017-02-23 15:46
Thanks mbusson, berker.peksag!
msg288466 - (view) Author: Matthias Bussonnier (mbussonn) * Date: 2017-02-23 17:09
Thanks Nick for finding this !
msg290421 - (view) Author: Alyssa Coghlan (ncoghlan) * (Python committer) Date: 2017-03-24 23:50
New changeset 0246422b974b1a0c50dd30b0e1a1138674ef87a5 by Nick Coghlan (Berker Peksag) in branch '3.5': bpo-28814: Undeprecate inadvertently deprecated inspect functions. (#122) (#244) https://github.com/python/cpython/commit/0246422b974b1a0c50dd30b0e1a1138674ef87a5
msg290424 - (view) Author: Alyssa Coghlan (ncoghlan) * (Python committer) Date: 2017-03-24 23:50
New changeset 2197eac6104311472f200645bc844adb46444b10 by Nick Coghlan (Berker Peksag) in branch '3.6': bpo-28814: Undeprecate inadvertently deprecated inspect functions. (#122) (#243) https://github.com/python/cpython/commit/2197eac6104311472f200645bc844adb46444b10
History
Date User Action Args
2022-04-11 14:58:40 admin set github: 73000
2017-03-24 23:50:35 ncoghlan set messages: +
2017-03-24 23:50:19 ncoghlan set messages: +
2017-02-23 17:09:07 mbussonn set messages: +
2017-02-23 15:46:55 ncoghlan set status: open -> closedresolution: fixedmessages: + stage: patch review -> resolved
2017-02-22 22:10:11 berker.peksag set pull_requests: + <pull%5Frequest208>
2017-02-22 22:08:02 berker.peksag set pull_requests: + <pull%5Frequest206>
2017-02-22 05:45:53 berker.peksag set messages: +
2017-02-21 07:39:39 berker.peksag set nosy: + berker.peksagstage: needs patch -> patch review
2017-02-15 16:56:04 mbussonn set nosy: + mbussonn
2017-02-15 16:54:26 mbussonn set pull_requests: + <pull%5Frequest83>
2016-11-27 13:07:32 ncoghlan create