Sync NEWS (re removed inspect.getargspec and inspect.getmoduleinfo)

This commit is contained in:
Yury Selivanov 2015-07-23 17:51:34 +03:00
parent 6dfbc5d98e
commit 5661316e4d
2 changed files with 4 additions and 1 deletions

View File

@ -148,7 +148,7 @@ API and Feature Removals
* ``inspect.getargspec()`` was removed (was deprecated since CPython 3.0). * ``inspect.getargspec()`` was removed (was deprecated since CPython 3.0).
:func:`inspect.getfullargspec` is an almost drop in replacement. :func:`inspect.getfullargspec` is an almost drop in replacement.
* ``inspect.getmoduleinfo`` was removed (was deprecated since CPython 3.3). * ``inspect.getmoduleinfo()`` was removed (was deprecated since CPython 3.3).
:func:`inspect.getmodulename` should be used for obtaining the module :func:`inspect.getmodulename` should be used for obtaining the module
name for a given path. name for a given path.

View File

@ -27,6 +27,9 @@ Library
- Issue #23661: unittest.mock side_effects can now be exceptions again. This - Issue #23661: unittest.mock side_effects can now be exceptions again. This
was a regression vs Python 3.4. Patch from Ignacio Rossi was a regression vs Python 3.4. Patch from Ignacio Rossi
- Issue #13248: Remove deprecated inspect.getargspec and inspect.getmoduleinfo
functions.
What's New in Python 3.5.0 beta 4? What's New in Python 3.5.0 beta 4?
================================== ==================================