Issue #19456: ntpath.join() now joins relative paths correctly when a drive
is present.
diff --git a/Misc/NEWS b/Misc/NEWS
index 7bfa991..6742370 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -38,6 +38,9 @@
Library
-------
+- Issue #19456: ntpath.join() now joins relative paths correctly when a drive
+ is present.
+
- Issue #8260: The read(), readline() and readlines() methods of
codecs.StreamReader returned incomplete data when were called after
readline() or read(size). Based on patch by Amaury Forgeot d'Arc.