summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-04-11 12:55:45 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-04-11 12:55:45 (GMT)
commit5e2f59314588f4d263fe728ee8ba7da92f3439a0 (patch)
tree642f00b3b7ddf0592014f8ba068605546dfebb83 /Misc
parentf49581c2a1a11fb278f3b6928f7e7f1e920abba1 (diff)
downloadcpython-5e2f59314588f4d263fe728ee8ba7da92f3439a0.zip
cpython-5e2f59314588f4d263fe728ee8ba7da92f3439a0.tar.gz
cpython-5e2f59314588f4d263fe728ee8ba7da92f3439a0.tar.bz2
#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 05414e3..3c73b35 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -23,6 +23,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 #17678: Fix DeprecationWarning in the http/cookiejar.py by changing the
usage of get_origin_req_host() to origin_req_host.