diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2012-07-18 13:14:57 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2012-07-18 13:14:57 (GMT) |
commit | 76e077001d9c593faaec1aa5187dd7870cb4481c (patch) | |
tree | 8ac59cf5a5321a0cef8cdf56a4681cf46969cb73 /Misc | |
parent | 90db661b4335eaf7a3cb5e9a4524ae9707eeaf76 (diff) | |
download | cpython-76e077001d9c593faaec1aa5187dd7870cb4481c.zip cpython-76e077001d9c593faaec1aa5187dd7870cb4481c.tar.gz cpython-76e077001d9c593faaec1aa5187dd7870cb4481c.tar.bz2 |
Close #15387: inspect.getmodulename() now uses a new importlib.machinery.all_suffixes() API rather than the deprecated inspect.getmoduleinfo()
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -41,6 +41,9 @@ Core and Builtins Library ------- +- Issue #15397: inspect.getmodulename() is now based directly on importlib + via a new importlib.machinery.all_suffixes() API. + - Issue #14635: telnetlib will use poll() rather than select() when possible to avoid failing due to the select() file descriptor limit. |