]> granicus.if.org Git - python/commitdiff
add info re: pydoc, pkgutil, and setuptools additions
authorPhillip J. Eby <pje@telecommunity.com>
Tue, 18 Apr 2006 16:45:14 +0000 (16:45 +0000)
committerPhillip J. Eby <pje@telecommunity.com>
Tue, 18 Apr 2006 16:45:14 +0000 (16:45 +0000)
Misc/NEWS

index 08c3905cb19c7a17ac37d077e5c040944b779998..a061bdb1357d032b7a2056495a089805f1baaa5b 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -74,6 +74,17 @@ Extension Modules
 Library
 -------
 
+- New modules: setuptools, easy_install, and pkg_resources, to support
+  building, installing, and using Python eggs, respectively.
+
+- The pydoc module now supports documenting packages contained in
+  .zip or .egg files.
+
+- The pkgutil module now has several new utility functions, such
+  as ``walk_packages()`` to support working with packages that are either
+  in the filesystem or zip files.
+
+
 - The ``__del__`` method of class ``local`` in module ``_threading_local``
   returned before accomplishing any of its intended cleanup.