[Python-checkins] cpython (3.2): Fix typo in “seperat{or,ion}”

eric.araujo python-checkins at python.org
Sun Feb 26 04:07:51 CET 2012


http://hg.python.org/cpython/rev/042061e98c02
changeset:   75285:042061e98c02
branch:      3.2
user:        Éric Araujo <merwok at netwok.org>
date:        Sun Feb 26 02:14:08 2012 +0100
summary:
  Fix typo in “seperat{or,ion}”

files:
  Modules/_io/_iomodule.c |  2 +-
  Modules/_io/textio.c    |  2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Modules/_io/_iomodule.c b/Modules/_io/_iomodule.c
--- a/Modules/_io/_iomodule.c
+++ b/Modules/_io/_iomodule.c
@@ -58,7 +58,7 @@
 "\n"
 "At the top of the I/O hierarchy is the abstract base class IOBase. It\n"
 "defines the basic interface to a stream. Note, however, that there is no\n"
-"seperation between reading and writing to streams; implementations are\n"
+"separation between reading and writing to streams; implementations are\n"
 "allowed to throw an IOError if they do not support a given operation.\n"
 "\n"
 "Extending IOBase is RawIOBase which deals simply with the reading and\n"
diff --git a/Modules/_io/textio.c b/Modules/_io/textio.c
--- a/Modules/_io/textio.c
+++ b/Modules/_io/textio.c
@@ -627,7 +627,7 @@
     "enabled.  With this enabled, on input, the lines endings '\\n', '\\r',\n"
     "or '\\r\\n' are translated to '\\n' before being returned to the\n"
     "caller. Conversely, on output, '\\n' is translated to the system\n"
-    "default line seperator, os.linesep. If newline is any other of its\n"
+    "default line separator, os.linesep. If newline is any other of its\n"
     "legal values, that newline becomes the newline when the file is read\n"
     "and it is returned untranslated. On output, '\\n' is converted to the\n"
     "newline.\n"

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list