mirror of
https://github.com/python/cpython.git
synced 2025-10-06 23:21:06 +00:00
Revert unneccessary changes made in bpo-30296 and apply other improvements. (GH-2624)
(cherry picked from commit 3f2e6f15d6
)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
This commit is contained in:
parent
a9e0b070b3
commit
f8a3485dcd
4 changed files with 6 additions and 5 deletions
|
@ -530,7 +530,7 @@ def add_callers(target, source):
|
|||
if func in new_callers:
|
||||
if isinstance(caller, tuple):
|
||||
# format used by cProfile
|
||||
new_callers[func] = tuple(i[0] + i[1] for i in zip(caller, new_callers[func]))
|
||||
new_callers[func] = tuple(i + j for i, j in zip(caller, new_callers[func]))
|
||||
else:
|
||||
# format used by profile
|
||||
new_callers[func] += caller
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue