Brett Cannon added the comment:

Since getfullargspec is new in Python 3 and inspect.signature fundamentally 
improves things in Python 3 due to Argument Clinic I would say go ahead and 
code deprecate getfullargspec (we can do a DeprecationWarning for 3.5 and 3.6 
and remove in 3.7; people needing compatibility can just use getargspec). As 
for getargspec, it was already deprecated so just leave it deprecated and 
update its message to say to use inspect.signature.

As for keeping track of this stuff, Stéphane, as part of the test that makes 
sure the warning is raised, add to that test -- don't need a separate method -- 
some code that will fail if the function exists in Python 3.7 or later.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue20438>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to