]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-34125: Enable profiling of method_descriptor in all cases (GH-8416)
authorjdemeyer <jdemeyer@cage.ugent.be>
Wed, 19 Sep 2018 10:06:20 +0000 (12:06 +0200)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 19 Sep 2018 10:06:20 +0000 (03:06 -0700)
commite89de7398718f6e68848b6340830aeb90b7d582c
treeb8b0e00f2ab2ae1e7b4438b954f59273b31748af
parentb3b8cb419e496629873fa7dda82a01863f58617a
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
Lib/test/test_sys_setprofile.py
Misc/NEWS.d/next/Core and Builtins/2018-07-23-16-34-03.bpo-34125.jCl2Q2.rst [new file with mode: 0644]
Python/ceval.c