From 9191eacf9e1a4eabfadaf993779c428de7a0b2b3 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Sat, 27 Jun 2020 08:39:57 -0700 Subject: [PATCH] Remove dead code from tracemalloc (GH-21029) tracemalloc_get_frame() checked filename == NULL two times in a row. Signed-off-by: Christian Heimes (cherry picked from commit 9cfcdb7d6e4d09bde63bc7116b2ab0d96724527e) Co-authored-by: Christian Heimes --- Modules/_tracemalloc.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Modules/_tracemalloc.c b/Modules/_tracemalloc.c index 56757165745..fc91622d392 100644 --- a/Modules/_tracemalloc.c +++ b/Modules/_tracemalloc.c @@ -319,10 +319,6 @@ tracemalloc_get_frame(PyFrameObject *pyframe, frame_t *frame) return; } - assert(filename != NULL); - if (filename == NULL) - return; - if (!PyUnicode_Check(filename)) { #ifdef TRACE_DEBUG tracemalloc_error("filename is not a unicode string");