]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix indentation.
authorGeorg Brandl <georg@python.org>
Sat, 22 Dec 2012 09:43:06 +0000 (10:43 +0100)
committerGeorg Brandl <georg@python.org>
Sat, 22 Dec 2012 09:43:06 +0000 (10:43 +0100)
Doc/library/imp.rst

index 04bc6f58775c2b14f7e29d4b600db93fc445e9ec..8f98d652d85f4d688f645d2d8f3a5b7953d142aa 100644 (file)
@@ -239,14 +239,14 @@ around for backward compatibility:
 
    .. 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])