summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-07-23 17:51:34 +0300
committerYury Selivanov <yselivanov@sprymix.com>2015-07-23 17:51:34 +0300
commit5661316e4d50a27666f206ef6483118f801a854e (patch)
tree9c5d4e7b35edb77f6c016c7a895d87e91fd16f75
parent6dfbc5d98eee400fa7b775b53c11a4e37fca3547 (diff)
downloadcpython-git-5661316e4d50a27666f206ef6483118f801a854e.tar.gz
Sync NEWS (re removed inspect.getargspec and inspect.getmoduleinfo)
-rw-r--r--Doc/whatsnew/3.6.rst2
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
index c881d30982..3f83f192f1 100644
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -148,7 +148,7 @@ API and Feature Removals
* ``inspect.getargspec()`` was removed (was deprecated since CPython 3.0).
: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
name for a given path.
diff --git a/Misc/NEWS b/Misc/NEWS
index b68f8a89ca..d433b95a78 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,9 @@ Library
- Issue #23661: unittest.mock side_effects can now be exceptions again. This
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?
==================================