Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Python/pylifecycle.c
Co-authored-by: Jelle Zijlstra <[email protected]>
  • Loading branch information
markshannon and JelleZijlstra authored May 15, 2023
commit 9be843518b088bee0a3bcc50971abc9193b3339f
2 changes: 1 addition & 1 deletion Python/pylifecycle.c
Original file line number Diff line number Diff line change
Expand Up @@ -1137,7 +1137,7 @@ init_interp_main(PyThreadState *tstate)
}

if (config->tracemalloc) {
if ( _PyTraceMalloc_Start(config->tracemalloc) < 0) {
if (_PyTraceMalloc_Start(config->tracemalloc) < 0) {
return _PyStatus_ERR("can't start tracemalloc");
}
}
Expand Down