MCPcopy
hub / github.com/geekcomputers/Python / backspace

Method backspace

Emoji Dictionary/emoji_dictionary.py:178–183  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

176 self.target.delete(0, END)
177
178 def backspace(self):
179 if self.target:
180 text = self.get()
181 text = text[:-1]
182 self.clear()
183 self.append(text)
184
185 def space(self):
186 if self.target:

Callers

nothing calls this directly

Calls 3

getMethod · 0.95
clearMethod · 0.95
appendMethod · 0.95

Tested by

no test coverage detected