summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2010-12-03 09:29:11 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2010-12-03 09:29:11 (GMT)
commit7bb30b72d8a165f8bacbc480b8d5a15834fa4c35 (patch)
treefa300bf03acaea1390b11730fb8fd884b691b1ba /Misc
parent9af2a6e56f9c9b45c42579c23c0de378929e7d60 (diff)
downloadcpython-7bb30b72d8a165f8bacbc480b8d5a15834fa4c35.zip
cpython-7bb30b72d8a165f8bacbc480b8d5a15834fa4c35.tar.gz
cpython-7bb30b72d8a165f8bacbc480b8d5a15834fa4c35.tar.bz2
Improve Pydoc interactive browsing (#2001). Patch by Ron Adam.
* A -b option to start an enhanced browsing session. * Allow -b and -p options to be used together. * Specifying port 0 will pick an arbitrary unused socket port. * A new browse() function to start the new server and browser. * Show Python version information in the header. * A *Get* field which takes the same input as the help() function. * A *Search* field which replaces the Tkinter search box. * Links to *Module Index*, *Topics*, and *Keywords*. * Improved source file viewing. * An HTMLDoc.filelink() method. * The -g option and the gui() and serve() functions are deprecated.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 6f1f89a..bc5821d 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -12,6 +12,7 @@ PS: In the standard Python distribution, this file is encoded in UTF-8
and the list is in rough alphabetical order by last names.
David Abrahams
+Ron Adam
Jim Ahlstrom
Farhan Ahmad
Matthew Ahrens
diff --git a/Misc/NEWS b/Misc/NEWS
index fec9648..9150764 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -33,6 +33,9 @@ Core and Builtins
Library
-------
+- Issue #2001: New HTML server with enhanced Web page features. Patch by Ron
+ Adam.
+
- Issue #10360: In WeakSet, do not raise TypeErrors when testing for membership
of non-weakrefable objects.