File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -397,7 +397,7 @@ def _send_bytes(self, buf):
397
397
self ._send (header )
398
398
self ._send (buf )
399
399
else :
400
- # Issue # 20540: concatenate before sending, to avoid delays due
400
+ # Issue #20540: concatenate before sending, to avoid delays due
401
401
# to Nagle's algorithm on a TCP socket.
402
402
# Also note we want to avoid sending a 0-length buffer separately,
403
403
# to avoid "broken pipe" errors if the other end closed the pipe.
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ raises an exception.
143
143
.TP
144
144
.B \- I
145
145
Run Python in isolated mode. This also implies \fB \- E \fP and \fB \- s \fP . In
146
- isolated mode sys.path contains neither the script’ s directory nor the user’ s
146
+ isolated mode sys.path contains neither the script' s directory nor the user' s
147
147
site-packages directory. All PYTHON* environment variables are ignored, too.
148
148
Further restrictions may be imposed to prevent the user from injecting
149
149
malicious code.
Original file line number Diff line number Diff line change @@ -1644,7 +1644,7 @@ The file must be an open file object such as sys.stdout or returned by\n\
1644
1644
open() or os.popen(). It must be opened in binary mode ('wb' or 'w+b').\n\
1645
1645
\n\
1646
1646
If the value has (or contains an object that has) an unsupported type, a\n\
1647
- ValueError exception is raised — but garbage data will also be written\n\
1647
+ ValueError exception is raised - but garbage data will also be written\n\
1648
1648
to the file. The object will not be properly read back by load()\n\
1649
1649
\n\
1650
1650
The version argument indicates the data format that dump should use." );
@@ -1695,7 +1695,7 @@ PyDoc_STRVAR(load_doc,
1695
1695
"load(file)\n\
1696
1696
\n\
1697
1697
Read one value from the open file and return it. If no valid value is\n\
1698
- read (e.g. because the data has a different Python version’ s\n\
1698
+ read (e.g. because the data has a different Python version' s\n\
1699
1699
incompatible marshal format), raise EOFError, ValueError or TypeError.\n\
1700
1700
The file must be an open file object opened in binary mode ('rb' or\n\
1701
1701
'r+b').\n\
You can’t perform that action at this time.
0 commit comments