From e03dde5a24d3953e0b16f7cdefdc8b00aa9d9e11 Mon Sep 17 00:00:00 2001 From: Yan Yanchii Date: Tue, 21 May 2024 18:28:21 +0200 Subject: gh-113978: Ignore warnings on text completion inside REPL (#113979) --- Lib/rlcompleter.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'Lib/rlcompleter.py') diff --git a/Lib/rlcompleter.py b/Lib/rlcompleter.py index 206d6fb511c..23eb0020f42 100644 --- a/Lib/rlcompleter.py +++ b/Lib/rlcompleter.py @@ -35,6 +35,7 @@ import inspect import keyword import re import __main__ +import warnings __all__ = ["Completer"] @@ -88,10 +89,11 @@ class Completer: return None if state == 0: - if "." in text: - self.matches = self.attr_matches(text) - else: - self.matches = self.global_matches(text) + with warnings.catch_warnings(action="ignore"): + if "." in text: + self.matches = self.attr_matches(text) + else: + self.matches = self.global_matches(text) try: return self.matches[state] except IndexError: -- cgit v1.2.3