diff options
author | Brett Cannon <brett@python.org> | 2014-03-21 15:24:40 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2014-03-21 15:24:40 (GMT) |
commit | 33a40003745302eff5e6031d24d26642763fb6d8 (patch) | |
tree | 75787adf85b136178f9053a54a2ed46f3f98c247 /Doc/whatsnew | |
parent | 051f37d2e739981eac45051f6f2b873d2ef4699f (diff) | |
download | cpython-33a40003745302eff5e6031d24d26642763fb6d8.zip cpython-33a40003745302eff5e6031d24d26642763fb6d8.tar.gz cpython-33a40003745302eff5e6031d24d26642763fb6d8.tar.bz2 |
Issue #20627: xmlrpc.client.ServerProxy is now a context manager.
Patch by Claudiu Popa.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.5.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index f11291b..b18bcd2 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -134,7 +134,8 @@ New Modules Improved Modules ================ -* None yet. +* :class:`xmlrpc.client.ServerProxy` is now a :term:`context manager` + (contributed by Claudiu Popa in :issue:`20627`). Optimizations |