summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-09-27 18:53:23 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2014-09-27 18:53:23 +0300
commitca534ab4957f3ed081133f2174543d8a560a4051 (patch)
treeb0a7d372f3404e5b953b0f57e9771cfcd43faaab /Misc
parent3e67d583ee75b99cc42b18443e4721d41ea523cb (diff)
downloadcpython-git-ca534ab4957f3ed081133f2174543d8a560a4051.tar.gz
Issue #9850: Fixed macpath.join() for empty first component. Patch by
Oleg Oshmyan.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2f3d9d127c..0b8ba0c105 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,9 @@ Core and Builtins
Library
-------
+- Issue #9850: Fixed macpath.join() for empty first component. Patch by
+ Oleg Oshmyan.
+
- Issue #22427: TemporaryDirectory no longer attempts to clean up twice when
used in the with statement in generator.