From: Georg Brandl Date: Sat, 22 Dec 2012 09:43:06 +0000 (+0100) Subject: Fix indentation. X-Git-Tag: v2.7.5~109^2~34 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9a772e5e8f1c85ca875329d8bb09098c1874d610;p=thirdparty%2FPython%2Fcpython.git Fix indentation. --- diff --git a/Doc/library/imp.rst b/Doc/library/imp.rst index 04bc6f58775c..8f98d652d85f 100644 --- a/Doc/library/imp.rst +++ b/Doc/library/imp.rst @@ -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])