[Python-checkins] cpython (3.2): fix typo
sandro.tosi
python-checkins at python.org
Tue Aug 14 19:52:42 CEST 2012
http://hg.python.org/cpython/rev/7e56c46f5707
changeset: 78578:7e56c46f5707
branch: 3.2
parent: 78573:84899daa4309
user: Sandro Tosi <sandro.tosi at gmail.com>
date: Tue Aug 14 19:51:43 2012 +0200
summary:
fix typo
files:
Doc/tutorial/inputoutput.rst | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst
--- a/Doc/tutorial/inputoutput.rst
+++ b/Doc/tutorial/inputoutput.rst
@@ -37,7 +37,7 @@
The :func:`str` function is meant to return representations of values which are
fairly human-readable, while :func:`repr` is meant to generate representations
which can be read by the interpreter (or will force a :exc:`SyntaxError` if
-there is not equivalent syntax). For objects which don't have a particular
+there is no equivalent syntax). For objects which don't have a particular
representation for human consumption, :func:`str` will return the same value as
:func:`repr`. Many values, such as numbers or structures like lists and
dictionaries, have the same representation using either function. Strings, in
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list