]> granicus.if.org Git - python/commitdiff
Issue #25899: Converted non-ASCII characters in docstrings and manpage
authorSerhiy Storchaka <storchaka@gmail.com>
Fri, 18 Dec 2015 11:05:04 +0000 (13:05 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Fri, 18 Dec 2015 11:05:04 +0000 (13:05 +0200)
to ASCII replacements.  Original patch by Chris Angelico.

Lib/multiprocessing/connection.py
Misc/python.man
Python/marshal.c

index 4c32237f14cc5b1dba12d137629fd39dde4b8723..d0a1b86b13ef1279fc428efe5e0f4026e56871a7 100644 (file)
@@ -397,7 +397,7 @@ class Connection(_ConnectionBase):
             self._send(header)
             self._send(buf)
         else:
-            # Issue #20540: concatenate before sending, to avoid delays due
+            # Issue #20540: concatenate before sending, to avoid delays due
             # to Nagle's algorithm on a TCP socket.
             # Also note we want to avoid sending a 0-length buffer separately,
             # to avoid "broken pipe" errors if the other end closed the pipe.
index 6dbdba9e5fe1043911ac69fcfae27e63e61d6249..4e1a81d230953255935e35f322db4722d201370f 100644 (file)
@@ -143,7 +143,7 @@ raises an exception.
 .TP
 .B \-I
 Run Python in isolated mode. This also implies \fB\-E\fP and \fB\-s\fP. In
-isolated mode sys.path contains neither the script’s directory nor the user’s
+isolated mode sys.path contains neither the script's directory nor the user's
 site-packages directory. All PYTHON* environment variables are ignored, too.
 Further restrictions may be imposed to prevent the user from injecting
 malicious code.
index f89cd04b6553c11d2252a58d3a0d1d3ef4b4dee0..5b8de9919217846fc508f76d406c4b4ab66df9c0 100644 (file)
@@ -1644,7 +1644,7 @@ The file must be an open file object such as sys.stdout or returned by\n\
 open() or os.popen(). It must be opened in binary mode ('wb' or 'w+b').\n\
 \n\
 If the value has (or contains an object that has) an unsupported type, a\n\
-ValueError exception is raised  but garbage data will also be written\n\
+ValueError exception is raised - but garbage data will also be written\n\
 to the file. The object will not be properly read back by load()\n\
 \n\
 The version argument indicates the data format that dump should use.");
@@ -1695,7 +1695,7 @@ PyDoc_STRVAR(load_doc,
 "load(file)\n\
 \n\
 Read one value from the open file and return it. If no valid value is\n\
-read (e.g. because the data has a different Python versions\n\
+read (e.g. because the data has a different Python version's\n\
 incompatible marshal format), raise EOFError, ValueError or TypeError.\n\
 The file must be an open file object opened in binary mode ('rb' or\n\
 'r+b').\n\