summaryrefslogtreecommitdiff
path: root/six.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-11-26 18:31:43 -0600
committerBenjamin Peterson <benjamin@python.org>2010-11-26 18:31:43 -0600
commitb92a22009ecbfedc133f0ff6b0c45997c82727b1 (patch)
tree99a230c81aa7d4e95f7e1fba77b5e0c56d43f87a /six.py
parent1e1456b7c4aa0ac2df39bc1bfd4569ef36c06d0f (diff)
downloadsix-b92a22009ecbfedc133f0ff6b0c45997c82727b1.tar.gz
rewrite docstring
Diffstat (limited to 'six.py')
-rw-r--r--six.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/six.py b/six.py
index 69e78b1..9ecaa3c 100644
--- a/six.py
+++ b/six.py
@@ -34,7 +34,7 @@ def _add_doc(func, doc):
def _import_module(name):
- """Import module, returning last module in string."""
+ """Import module, returning the module after the last dot."""
__import__(name)
return sys.modules[name]