@@ -4043,7 +4043,8 @@ def search(self, pattern, index, stopindex=None,
40434043 regexp = None , nocase = None , count = None ,
40444044 elide = None , nolinestop = None , strictlimits = None ):
40454045 """Search PATTERN beginning from INDEX until STOPINDEX.
4046- Return the index of the first character of a match or an empty string."""
4046+ Return the index of the first character of a match or an
4047+ empty string."""
40474048 args = [self ._w , 'search' ]
40484049 if forwards : args .append ('-forwards' )
40494050 if backwards : args .append ('-backwards' )
@@ -4060,7 +4061,7 @@ def search(self, pattern, index, stopindex=None,
40604061 if stopindex : args .append (stopindex )
40614062 return str (self .tk .call (tuple (args )))
40624063
4063- def search_all (self , pattern , index , stopindex = None ,
4064+ def search_all (self , pattern , index , stopindex = None , * ,
40644065 forwards = None , backwards = None , exact = None ,
40654066 regexp = None , nocase = None , count = None ,
40664067 elide = None , nolinestop = None , overlap = None ,
0 commit comments