]> granicus.if.org Git - python/commitdiff
Fix typo in “seperat{or,ion}”
authorÉric Araujo <merwok@netwok.org>
Sun, 26 Feb 2012 01:14:08 +0000 (02:14 +0100)
committerÉric Araujo <merwok@netwok.org>
Sun, 26 Feb 2012 01:14:08 +0000 (02:14 +0100)
Modules/_io/_iomodule.c
Modules/_io/textio.c

index 61362c73b2a8aca67ee0b2097e7bf61b3dc514e5..4c90433ae97287fa526c85e57fbccd05c99616f6 100644 (file)
@@ -58,7 +58,7 @@ PyDoc_STRVAR(module_doc,
 "\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"
index 9c5f4416d1bbf5a754f1c8d5ff426070e10f9d96..baf0a971a770adad61b0386aaac006abc9bee508 100644 (file)
@@ -627,7 +627,7 @@ PyDoc_STRVAR(textiowrapper_doc,
     "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"