summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-11-26 20:31:53 +0000
committerBenjamin Peterson <benjamin@python.org>2016-11-26 20:31:53 +0000
commit59913ce675a350d8582eb225e3c30007c982f6ae (patch)
treea2fbdf972e994a43059ca2119c6d796ee4e70606
parenta15c970c8f01ea6e5c62a699f84f2620f08f14d4 (diff)
parent193fcfc8f935ef086e42c7d01c5eabdaa13bf301 (diff)
downloadsix-59913ce675a350d8582eb225e3c30007c982f6ae.tar.gz
Merged in lbesson/six/lbesson/a-small-typing-mistake-on-documentationi-1480180767819 (pull request #83)
A small typing mistake on documentation/index.rst
-rw-r--r--documentation/index.rst4
1 files 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::