diff options
author | Georg Brandl <georg@python.org> | 2012-12-22 09:43:06 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-12-22 09:43:06 (GMT) |
commit | 9a772e5e8f1c85ca875329d8bb09098c1874d610 (patch) | |
tree | 938a75d10edb79a4f1f30d12138b19bfb9d9c4d1 | |
parent | ed512a4d0969a93402e3d4245540dff24b0dce4c (diff) | |
download | cpython-9a772e5e8f1c85ca875329d8bb09098c1874d610.zip cpython-9a772e5e8f1c85ca875329d8bb09098c1874d610.tar.gz cpython-9a772e5e8f1c85ca875329d8bb09098c1874d610.tar.bz2 |
Fix indentation.
-rw-r--r-- | Doc/library/imp.rst | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Doc/library/imp.rst b/Doc/library/imp.rst index 04bc6f5..8f98d65 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]) |