summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2020-12-29 11:50:22 (GMT)
committerGitHub <noreply@github.com>2020-12-29 11:50:22 (GMT)
commit40c2c83899053d004ac2df8e58b2b4145b01370e (patch)
treecce61e37f003a20d519174c65c10a46af5c882eb /Misc
parent1df56bc0597a051c13d53514e120e9b6764185f8 (diff)
downloadcpython-40c2c83899053d004ac2df8e58b2b4145b01370e.zip
cpython-40c2c83899053d004ac2df8e58b2b4145b01370e.tar.gz
cpython-40c2c83899053d004ac2df8e58b2b4145b01370e.tar.bz2
Fix typo in NEWS (GH23958)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/3.8.0a1.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS.d/3.8.0a1.rst b/Misc/NEWS.d/3.8.0a1.rst
index b7164a5..89811c1 100644
--- a/Misc/NEWS.d/3.8.0a1.rst
+++ b/Misc/NEWS.d/3.8.0a1.rst
@@ -1784,7 +1784,7 @@ instead of an OrderedDict.
.. nonce: Q0ktFC
.. section: Library
-An ExitStack is now used internally within subprocess.POpen to clean up pipe
+An ExitStack is now used internally within subprocess.Popen to clean up pipe
file handles. No behavior change in normal operation. But if closing one
handle were ever to cause an exception, the others will now be closed
instead of leaked. (patch by Giampaolo Rodola)