summaryrefslogtreecommitdiff
path: root/Lib/pstats.py
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2017-05-18 07:35:54 -0700
committerRaymond Hettinger <rhettinger@users.noreply.github.com>2017-05-18 07:35:54 -0700
commit3972628de3d569c88451a2a176a1c94d8822b8a6 (patch)
tree30627d132c42fb65f96c3d9e209b317f68d175ed /Lib/pstats.py
parent906f5330b9c9a74cad1cf27fddaf77e99dff9edd (diff)
downloadcpython-git-3972628de3d569c88451a2a176a1c94d8822b8a6.tar.gz
bpo-30296 Remove unnecessary tuples, lists, sets, and dicts (#1489)
* Replaced list(<generator expression>) with list comprehension * Replaced dict(<generator expression>) with dict comprehension * Replaced set(<list literal>) with set literal * Replaced builtin func(<list comprehension>) with func(<generator expression>) when supported (e.g. any(), all(), tuple(), min(), & max())
Diffstat (limited to 'Lib/pstats.py')
-rw-r--r--Lib/pstats.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/pstats.py b/Lib/pstats.py
index b8bcfb23a5..b7a20542a3 100644
--- a/Lib/pstats.py
+++ b/Lib/pstats.py
@@ -500,8 +500,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[0] + i[1] for i in zip(caller, new_callers[func]))
else:
# format used by profile
new_callers[func] += caller