From 4b7eb321bc43e41371df86fce47bd999ee51a793 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Sat, 25 May 2024 18:08:32 +0100 Subject: [PATCH] gh-99180: Make `StackSummary.should_show_carets` private (#119554) --- Lib/traceback.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/traceback.py b/Lib/traceback.py index 280d92d04ca..6ee1a50ca68 100644 --- a/Lib/traceback.py +++ b/Lib/traceback.py @@ -580,7 +580,7 @@ class StackSummary(list): show_carets = False with suppress(Exception): anchors = _extract_caret_anchors_from_line_segment(segment) - show_carets = self.should_show_carets(start_offset, end_offset, all_lines, anchors) + show_carets = self._should_show_carets(start_offset, end_offset, all_lines, anchors) result = [] @@ -694,7 +694,7 @@ class StackSummary(list): return ''.join(row) - def should_show_carets(self, start_offset, end_offset, all_lines, anchors): + def _should_show_carets(self, start_offset, end_offset, all_lines, anchors): with suppress(SyntaxError, ImportError): import ast tree = ast.parse('\n'.join(all_lines))