summaryrefslogtreecommitdiffstats
path: root/Doc/library/imp.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-09-13 17:41:16 (GMT)
committerGeorg Brandl <georg@python.org>2008-09-13 17:41:16 (GMT)
commit9af9498c6e59aa9efe0370bcc476307b4c30c06c (patch)
treec8b5dee5200abd38af016b0e13fb93410e1b550b /Doc/library/imp.rst
parentf2a2c796e37f888a254d7e2af8e4bc0dc0899530 (diff)
downloadcpython-9af9498c6e59aa9efe0370bcc476307b4c30c06c.zip
cpython-9af9498c6e59aa9efe0370bcc476307b4c30c06c.tar.gz
cpython-9af9498c6e59aa9efe0370bcc476307b4c30c06c.tar.bz2
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 a40c5e5..1d3c2f6 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)``:
@@ -153,12 +153,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.