From f9e07e116c32b6dc4561d0bdeb452ccde13b0e7c Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Wed, 22 Jan 2020 23:55:07 -0500 Subject: bpo-32989: IDLE - remove unneeded parameter (GH-18138) IDLE does not pass a non-default _synchre in any of its calls to pyparse.find_good_parse_start. --- Lib/idlelib/pyparse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/idlelib/pyparse.py') diff --git a/Lib/idlelib/pyparse.py b/Lib/idlelib/pyparse.py index 9fa2010896..d34872b439 100644 --- a/Lib/idlelib/pyparse.py +++ b/Lib/idlelib/pyparse.py @@ -133,7 +133,7 @@ class Parser: self.code = s self.study_level = 0 - def find_good_parse_start(self, is_char_in_string, _synchre=_synchre): + def find_good_parse_start(self, is_char_in_string): """ Return index of a good place to begin parsing, as close to the end of the string as possible. This will be the start of some -- cgit v1.2.1