MCPcopy Index your code
hub / github.com/RustPython/RustPython / replace

Method replace

Lib/tkinter/__init__.py:4011–4017  ·  view source on GitHub ↗

Replaces the range of characters between index1 and index2 with the given characters and tags specified by args. See the method insert for some more information about args, and the method delete for information about the indices.

(self, index1, index2, chars, *args)

Source from the content-addressed store, hash-verified

4009 return self.tk.splitlist(self.tk.call(self._w, 'peer', 'names'))
4010
4011 def replace(self, index1, index2, chars, *args): # new in Tk 8.5
4012 """Replaces the range of characters between index1 and index2 with
4013 the given characters and tags specified by args.
4014
4015 See the method insert for some more information about args, and the
4016 method delete for information about the indices."""
4017 self.tk.call(self._w, 'replace', index1, index2, chars, *args)
4018
4019 def scan_mark(self, x, y):
4020 """Remember the current X, Y coordinates."""

Callers 15

_stringifyFunction · 0.45
uu_encodeFunction · 0.45
search_functionFunction · 0.45
quoteFunction · 0.45
__init__Method · 0.45
header_decodeFunction · 0.45
_qencodeFunction · 0.45
formatdateFunction · 0.45
unquoteFunction · 0.45
decode_qFunction · 0.45
make_quoted_pairsFunction · 0.45
quoteMethod · 0.45

Calls 1

callMethod · 0.45

Tested by

no test coverage detected