summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-05-24 23:41:22 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-05-24 23:41:22 (GMT)
commit6daa33c8acf47bcc41ea827e7b3dbcc5fae9f771 (patch)
treeb7994a38067ed110625c77321601d93ddd1b2c51 /Misc
parent383c3fc6b41475884f717fea85611e9b423d6fa1 (diff)
downloadcpython-6daa33c8acf47bcc41ea827e7b3dbcc5fae9f771.zip
cpython-6daa33c8acf47bcc41ea827e7b3dbcc5fae9f771.tar.gz
cpython-6daa33c8acf47bcc41ea827e7b3dbcc5fae9f771.tar.bz2
Issue #10818: Remove deprecated pydoc.serve() function
The pydoc module has a new enhanced web server.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 3 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4b8d00a..f602595 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -161,8 +161,9 @@ Core and Builtins
Library
-------
-- Issue #10818: Remove the Tk GUI of the pydoc module (pydoc -g has been
- deprecated in Python 3.2).
+- Issue #10818: Remove the Tk GUI and the serve() function of the pydoc module,
+ pydoc -g has been deprecated in Python 3.2 and it has a new enhanced web
+ server.
- Issue #1441530: In imaplib, read the data in one chunk to speed up large
reads and simplify code.