summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTrent Nelson <trent@trent.me>2012-08-29 13:20:41 (GMT)
committerTrent Nelson <trent@trent.me>2012-08-29 13:20:41 (GMT)
commitda4277a739bab61e79dc4d064b1e1648ddd59150 (patch)
tree6daf98ae796f894cca8901f72ed12797c5a2b58c /Misc
parent23d49d3e7e386bb2b26d5b944fc123f0f21ce0a6 (diff)
downloadcpython-da4277a739bab61e79dc4d064b1e1648ddd59150.zip
cpython-da4277a739bab61e79dc4d064b1e1648ddd59150.tar.gz
cpython-da4277a739bab61e79dc4d064b1e1648ddd59150.tar.bz2
Issue #15765: Fix quirky NetBSD getcwd() behaviour.
This is done by extending a previous fix for issue #9185 that was made for Solaris and OpenBSD to NetBSD as well.
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 54c260c..1b7f80f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -346,6 +346,9 @@ Library
Tests
-----
+- Issue #15765: Extend a previous fix to Solaris and OpenBSD for quirky
+ getcwd() behaviour (issue #9185) to NetBSD as well.
+
- Issue #15615: Add some tests for the json module's handling of invalid
input data. Patch by Kushal Das.