summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorjdemeyer <jdemeyer@cage.ugent.be>2018-09-19 10:06:20 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-09-19 10:06:20 (GMT)
commite89de7398718f6e68848b6340830aeb90b7d582c (patch)
treeb8b0e00f2ab2ae1e7b4438b954f59273b31748af /Misc
parentb3b8cb419e496629873fa7dda82a01863f58617a (diff)
downloadcpython-e89de7398718f6e68848b6340830aeb90b7d582c.zip
cpython-e89de7398718f6e68848b6340830aeb90b7d582c.tar.gz
cpython-e89de7398718f6e68848b6340830aeb90b7d582c.tar.bz2
bpo-34125: Enable profiling of method_descriptor in all cases (GH-8416)
`list.append([], None)` was profiled but `list.append([], None, **{})` was not profiled. Enable profiling for later case. https://bugs.python.org/issue34125
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2018-07-23-16-34-03.bpo-34125.jCl2Q2.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-07-23-16-34-03.bpo-34125.jCl2Q2.rst b/Misc/NEWS.d/next/Core and Builtins/2018-07-23-16-34-03.bpo-34125.jCl2Q2.rst
new file mode 100644
index 0000000..e6036b4
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2018-07-23-16-34-03.bpo-34125.jCl2Q2.rst
@@ -0,0 +1 @@
+Profiling of unbound built-in methods now works when ``**kwargs`` is given.