summaryrefslogtreecommitdiffstats
path: root/Doc/library/imp.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-09-13 17:46:05 (GMT)
committerGeorg Brandl <georg@python.org>2008-09-13 17:46:05 (GMT)
commitc575c9064769d37ac9555b7cd2907c25ab030810 (patch)
tree8b15a940b50eba4b66a62a2610904efe88d94d18 /Doc/library/imp.rst
parenta6fc212d2a2254ea2c3a6890bbb9b17cf0878529 (diff)
downloadcpython-c575c9064769d37ac9555b7cd2907c25ab030810.zip
cpython-c575c9064769d37ac9555b7cd2907c25ab030810.tar.gz
cpython-c575c9064769d37ac9555b7cd2907c25ab030810.tar.bz2
Merged revisions 66452 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r66452 | georg.brandl | 2008-09-13 19:41:16 +0200 (Sat, 13 Sep 2008) | 2 lines Remove things specific to the old Macintosh, and spell "Mac OS X" consistently. ........
Diffstat (limited to 'Doc/library/imp.rst')
-rw-r--r--Doc/library/imp.rst10
1 files changed, 2 insertions, 8 deletions
diff --git a/Doc/library/imp.rst b/Doc/library/imp.rst
index e245a0c..eacb4bb 100644
--- a/Doc/library/imp.rst
+++ b/Doc/library/imp.rst
@@ -42,8 +42,8 @@ This module provides an interface to the mechanisms used to implement the
searched, but first it searches a few special places: it tries to find a
built-in module with the given name (:const:`C_BUILTIN`), then a frozen
module (:const:`PY_FROZEN`), and on some systems some other places are looked
- in as well (on the Mac, it looks for a resource (:const:`PY_RESOURCE`); on
- Windows, it looks in the registry which may point to a specific file).
+ in as well (on Windows, it looks in the registry which may point to a
+ specific file).
If search is successful, the return value is a 3-element tuple ``(file,
pathname, description)``:
@@ -223,12 +223,6 @@ indicate the search result of :func:`find_module`.
The module was found as dynamically loadable shared library.
-.. data:: PY_RESOURCE
-
- The module was found as a Mac OS 9 resource. This value can only be returned on
- a Mac OS 9 or earlier Macintosh.
-
-
.. data:: PKG_DIRECTORY
The module was found as a package directory.