add info re: pydoc, pkgutil, and setuptools additions

This commit is contained in:
Phillip J. Eby 2006-04-18 16:45:14 +00:00
parent e7670a329e
commit 17a35f906c
1 changed files with 11 additions and 0 deletions

View File

@ -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.