summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2009-05-11 01:47:11 (GMT)
committerBrett Cannon <bcannon@gmail.com>2009-05-11 01:47:11 (GMT)
commit1262e7c7468b6a92a680161c322a0234b526e3db (patch)
tree810d23e94fd2bf85148588e3ec22caf1b0cf79dd /Misc
parentcc3b8d6883f52391c59f59e82bfa1840e2847d90 (diff)
downloadcpython-1262e7c7468b6a92a680161c322a0234b526e3db.zip
cpython-1262e7c7468b6a92a680161c322a0234b526e3db.tar.gz
cpython-1262e7c7468b6a92a680161c322a0234b526e3db.tar.bz2
Tests for case-senstivity were not being skipped for darwin when installed on a
case-sensitive filesystems -- which is not the default case. Along the way also fixed the skipping of tests when sys.dont_write_bytecode is true. Closes issue #5442 again.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS9
1 files changed, 9 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 537434b..c531f1e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -19,6 +19,15 @@ Library
now it does. This also means getfp method now returns the real fp.
+Tests
+-----
+
+- Issue 5442: Tests for importlib were not properly skipping case-sensitivity
+ tests on darwin even when the OS was installed on a case-sensitive
+ filesystem. Also fixed tests that should not be run when
+ sys.dont_write_bytecode is true.
+
+
What's New in Python 3.1 beta 1?
================================