From 193fcfc8f935ef086e42c7d01c5eabdaa13bf301 Mon Sep 17 00:00:00 2001 From: "Lilian Besson (Naereen)" Date: Sat, 26 Nov 2016 17:19:30 +0000 Subject: A small typing mistake on documentation/index.rst --- documentation/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/index.rst b/documentation/index.rst index 0fa0063..dbae80a 100644 --- a/documentation/index.rst +++ b/documentation/index.rst @@ -530,14 +530,14 @@ functionality; its structure mimics the structure of the Python 3 from six.moves.cPickle import loads - work, six places special proxy objects in in :data:`py3:sys.modules`. These + work, six places special proxy objects in :data:`py3:sys.modules`. These proxies lazily load the underlying module when an attribute is fetched. This will fail if the underlying module is not available in the Python interpreter. For example, ``sys.modules["six.moves.winreg"].LoadKey`` would fail on any non-Windows platform. Unfortunately, some applications try to load attributes on every module in :data:`py3:sys.modules`. six mitigates this problem for some applications by pretending attributes on unimportable - modules don't exist. This hack doesn't work in every case, though. If you are + modules do not exist. This hack does not work in every case, though. If you are encountering problems with the lazy modules and don't use any from imports directly from ``six.moves`` modules, you can workaround the issue by removing the six proxy modules:: -- cgit v1.2.1