[Python-checkins] cpython (2.7): Fix indentation.

georg.brandl python-checkins at python.org
Sat Dec 22 10:43:36 CET 2012


http://hg.python.org/cpython/rev/85de707bc119
changeset:   80976:85de707bc119
branch:      2.7
parent:      80966:5ca63d68792d
user:        Georg Brandl <georg at python.org>
date:        Sat Dec 22 10:43:06 2012 +0100
summary:
  Fix indentation.

files:
  Doc/library/imp.rst |  16 ++++++++--------
  1 files changed, 8 insertions(+), 8 deletions(-)


diff --git a/Doc/library/imp.rst b/Doc/library/imp.rst
--- a/Doc/library/imp.rst
+++ b/Doc/library/imp.rst
@@ -239,14 +239,14 @@
 
    .. impl-detail::
 
-    The import internals identify extension modules by filename, so doing
-    ``foo = load_dynamic("foo", "mod.so")`` and
-    ``bar = load_dynamic("bar", "mod.so")`` will result in both foo and bar
-    referring to the same module, regardless of whether or not
-    ``mod.so`` exports an ``initbar`` function. On systems which
-    support them, symlinks can be used to import multiple modules from
-    the same shared library, as each reference to the module will use
-    a different file name.
+      The import internals identify extension modules by filename, so doing
+      ``foo = load_dynamic("foo", "mod.so")`` and
+      ``bar = load_dynamic("bar", "mod.so")`` will result in both foo and bar
+      referring to the same module, regardless of whether or not
+      ``mod.so`` exports an ``initbar`` function. On systems which
+      support them, symlinks can be used to import multiple modules from
+      the same shared library, as each reference to the module will use
+      a different file name.
 
 
 .. function:: load_source(name, pathname[, file])

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list