summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-10-23 17:15:05 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-10-23 17:15:05 (GMT)
commit6c6b3f770d0b54eeb3e42b38e1fe5d893c38dd6e (patch)
tree6f6f93e241e5fe83fb3822d92eaa80f2a5f862df /Misc
parent3d3e1ba8ac9d759394a76a3da4c47247b3120be3 (diff)
parentd5d0bc35adc6c043d5985152451505e70d869341 (diff)
downloadcpython-6c6b3f770d0b54eeb3e42b38e1fe5d893c38dd6e.zip
cpython-6c6b3f770d0b54eeb3e42b38e1fe5d893c38dd6e.tar.gz
cpython-6c6b3f770d0b54eeb3e42b38e1fe5d893c38dd6e.tar.bz2
Issue #19352: Fix unittest discovery when a module can be reached through several paths (e.g. under Debian/Ubuntu with virtualenv).
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 409b56e..0ea3dbf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -19,6 +19,9 @@ Core and Builtins
Library
-------
+- Issue #19352: Fix unittest discovery when a module can be reached
+ through several paths (e.g. under Debian/Ubuntu with virtualenv).
+
- Issue #15207: Fix mimetypes to read from correct part of Windows registry
Original patch by Dave Chambers