summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-08-31 13:34:09 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-08-31 13:34:09 (GMT)
commit2ad5421dad86bc95aabe5c77f6034ee6ca699992 (patch)
treebbf0cdb9e99b8913aec6326cc378b96445a11415 /Misc
parent3f48d394930097724d5eb01499896d52ced4c4fc (diff)
downloadcpython-2ad5421dad86bc95aabe5c77f6034ee6ca699992.zip
cpython-2ad5421dad86bc95aabe5c77f6034ee6ca699992.tar.gz
cpython-2ad5421dad86bc95aabe5c77f6034ee6ca699992.tar.bz2
don't index outside of the path (closes #22312)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5d80034..d139e7b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -19,6 +19,8 @@ Core and Builtins
Library
-------
+- Issue #22312: Fix ntpath.splitdrive IndexError.
+
- Issue #22216: smtplib now resets its state more completely after a quit. The
most obvious consequence of the previous behavior was a STARTTLS failure
during a connect/starttls/quit/connect/starttls sequence.