diff options
author | Fredrik Lundh <fredrik@pythonware.com> | 2006-01-15 15:00:40 (GMT) |
---|---|---|
committer | Fredrik Lundh <fredrik@pythonware.com> | 2006-01-15 15:00:40 (GMT) |
commit | b84b35f02a155238570f8955f8a92d43d21707f5 (patch) | |
tree | 19cb90dec596b039e1cc3fa10c05e44d57262d04 /Modules/zipimport.c | |
parent | 26075a196cdec8fa90405b12bdf750ec054686fe (diff) | |
download | cpython-b84b35f02a155238570f8955f8a92d43d21707f5.zip cpython-b84b35f02a155238570f8955f8a92d43d21707f5.tar.gz cpython-b84b35f02a155238570f8955f8a92d43d21707f5.tar.bz2 |
the implementation uses ZipImportError, not ZipImporterError...
Diffstat (limited to 'Modules/zipimport.c')
-rw-r--r-- | Modules/zipimport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/zipimport.c b/Modules/zipimport.c index b2b2e3b..937b0f7 100644 --- a/Modules/zipimport.c +++ b/Modules/zipimport.c @@ -1132,7 +1132,7 @@ PyDoc_STRVAR(zipimport_doc, \n\ This module exports three objects:\n\ - zipimporter: a class; its constructor takes a path to a Zip archive.\n\ -- ZipImporterError: exception raised by zipimporter objects. It's a\n\ +- ZipImportError: exception raised by zipimporter objects. It's a\n\ subclass of ImportError, so it can be caught as ImportError, too.\n\ - _zip_directory_cache: a dict, mapping archive paths to zip directory\n\ info dicts, as used in zipimporter._files.\n\ |