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.

Author Yaroslav.Halchenko
Recipients Arfrever, BreamoreBoy, Yaroslav.Halchenko, berker.peksag, eric.araujo, ezio.melotti, flox, giampaolo.rodola, larry, martin.panter, orsenthil, pitrou, python-dev, rhettinger, terry.reedy, tshepang, vstinner, yselivanov
Date 2015-07-30.18:31:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1438281101.14.0.788006457709.issue13248@psf.upfronthosting.co.za>
In-reply-to
Content
the function getargspec was removed but references to it within docstrings remained:

$> git grep getargspec
Doc/library/inspect.rst:   The first four items in the tuple correspond to :func:`getargspec`.
Doc/library/inspect.rst:   :func:`getargspec` or :func:`getfullargspec`.
Doc/whatsnew/3.4.rst::func:`~inspect.getfullargspec` and :func:`~inspect.getargspec`
Doc/whatsnew/3.5.rst:* :func:`inspect.getargspec` is deprecated and scheduled to be removed in
Doc/whatsnew/3.6.rst:* ``inspect.getargspec()`` was removed (was deprecated since CPython 3.0).
Lib/inspect.py:    getargspec(), getargvalues(), getcallargs() - get info about function arguments
Lib/inspect.py:    The first four items in the tuple correspond to getargspec().
Lib/inspect.py:    """Format an argument spec from the values returned by getargspec
Lib/test/test_inspect.py:# getclasstree, getargspec, getargvalues, formatargspec, formatargvalues,
Misc/NEWS:- Issue #13248: Remove deprecated inspect.getargspec and inspect.getmoduleinfo
History
Date User Action Args
2015-07-30 18:31:41Yaroslav.Halchenkosetrecipients: + Yaroslav.Halchenko, rhettinger, terry.reedy, orsenthil, pitrou, vstinner, larry, giampaolo.rodola, ezio.melotti, eric.araujo, Arfrever, flox, BreamoreBoy, tshepang, python-dev, berker.peksag, martin.panter, yselivanov
2015-07-30 18:31:41Yaroslav.Halchenkosetmessageid: <1438281101.14.0.788006457709.issue13248@psf.upfronthosting.co.za>
2015-07-30 18:31:41Yaroslav.Halchenkolinkissue13248 messages
2015-07-30 18:31:40Yaroslav.Halchenkocreate