File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ Released on 2020-10-05?
6
6
bpo-39050: Make Settings dialog Help button work again.
7
7
8
8
bpo-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.
10
11
11
12
bpo-38943: Fix autocomplete windows not always appearing on some
12
13
systems. Patch by Johnny Najera.
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ def set_code(self, s):
133
133
self .code = s
134
134
self .study_level = 0
135
135
136
- def find_good_parse_start (self , is_char_in_string , _synchre = _synchre ):
136
+ def find_good_parse_start (self , is_char_in_string ):
137
137
"""
138
138
Return index of a good place to begin parsing, as close to the
139
139
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