File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ Released on 2020-10-05?
66bpo-39050: Make Settings dialog Help button work again.
77
88bpo-32989: Add tests for editor newline_and_indent_event method.
9- Remove dead code from pyparse find_good_parse_start method.
9+ Remove unneeded arguments and dead code from pyparse
10+ find_good_parse_start method.
1011
1112bpo-38943: Fix autocomplete windows not always appearing on some
1213systems. Patch by Johnny Najera.
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ def set_code(self, s):
133133 self .code = s
134134 self .study_level = 0
135135
136- def find_good_parse_start (self , is_char_in_string , _synchre = _synchre ):
136+ def find_good_parse_start (self , is_char_in_string ):
137137 """
138138 Return index of a good place to begin parsing, as close to the
139139 end of the string as possible. This will be the start of some
You can’t perform that action at this time.
0 commit comments