summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Foord <fuzzyman@voidspace.org.uk>2010-11-18 11:02:50 (GMT)
committerMichael Foord <fuzzyman@voidspace.org.uk>2010-11-18 11:02:50 (GMT)
commitbcc481000296a2227600ee59e92f0f78f541a32d (patch)
treee4b033e49cda8e497bc2b9000648af255acde256
parent9a4030ee757bf6de568dd7aa7aaa4c76270aafea (diff)
downloadcpython-bcc481000296a2227600ee59e92f0f78f541a32d.zip
cpython-bcc481000296a2227600ee59e92f0f78f541a32d.tar.gz
cpython-bcc481000296a2227600ee59e92f0f78f541a32d.tar.bz2
Remove duplicate period from reference doc
-rw-r--r--Doc/reference/simple_stmts.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst
index 7de9c0e..d89b147 100644
--- a/Doc/reference/simple_stmts.rst
+++ b/Doc/reference/simple_stmts.rst
@@ -791,7 +791,7 @@ first form of :keyword:`import`, an alternate local name can be supplied by
specifying ":keyword:`as` localname". If a name is not found,
:exc:`ImportError` is raised. If the list of identifiers is replaced by a star
(``'*'``), all public names defined in the module are bound in the local
-namespace of the :keyword:`import` statement..
+namespace of the :keyword:`import` statement.
.. index:: single: __all__ (optional module attribute)