summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-04-11 12:58:11 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-04-11 12:58:11 (GMT)
commitc601dc163932009b5d9f4e73eaa4204c2d47c468 (patch)
treeb2b69f25a9cf3de86f727495e2d52bff9267fb95 /Misc
parentf4216eacd9870191fd791a50a43b90c393349ad4 (diff)
parent5e2f59314588f4d263fe728ee8ba7da92f3439a0 (diff)
downloadcpython-c601dc163932009b5d9f4e73eaa4204c2d47c468.zip
cpython-c601dc163932009b5d9f4e73eaa4204c2d47c468.tar.gz
cpython-c601dc163932009b5d9f4e73eaa4204c2d47c468.tar.bz2
Merge #14971: Use class method name, not function.__name__, during unittest discovery.
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 3543f32..1336f03 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -34,6 +34,9 @@ Core and Builtins
Library
-------
+- Issue #14971: unittest test discovery no longer gets confused when a function
+ has a different __name__ than its name in the TestCase class dictionary.
+
- Issue #17487: The wave getparams method now returns a namedtuple rather than
a plain tuple.