diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2009-02-08 03:37:27 +0000 |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2009-02-08 03:37:27 +0000 |
commit | 9a1d6e3022c8eb3cc3b05a30ea975da971bd5938 (patch) | |
tree | 14c1d51e518f7ea189700355f1b2a004baf1e871 /Doc/library/zipimport.rst | |
parent | Merged revisions 69419-69420 via svnmerge from (diff) | |
download | cpython-9a1d6e3022c8eb3cc3b05a30ea975da971bd5938.tar.gz cpython-9a1d6e3022c8eb3cc3b05a30ea975da971bd5938.tar.bz2 cpython-9a1d6e3022c8eb3cc3b05a30ea975da971bd5938.zip |
Merged revisions 69425 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r69425 | nick.coghlan | 2009-02-08 13:17:00 +1000 (Sun, 08 Feb 2009) | 1 line
Issue #4512 closeout: Make ZipImport.get_filename() a public method
........
Diffstat (limited to 'Doc/library/zipimport.rst')
-rw-r--r-- | Doc/library/zipimport.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/library/zipimport.rst b/Doc/library/zipimport.rst index 912378e1645..3fd0595db56 100644 --- a/Doc/library/zipimport.rst +++ b/Doc/library/zipimport.rst @@ -88,6 +88,15 @@ zipimporter Objects file wasn't found. + .. method:: get_filename(fullname) + + Return the value ``__file__`` would be set to if the specified module + was imported. Raise :exc:`ZipImportError` if the module couldn't be + found. + + .. versionadded:: 3.1 + + .. method:: get_source(fullname) Return the source code for the specified module. Raise |