MCPcopy Index your code
hub / github.com/python/cpython / insert

Method insert

Lib/idlelib/pyshell.py:382–385  ·  view source on GitHub ↗
(self, index, chars, tags=None)

Source from the content-addressed store, hash-verified

380class UserInputTaggingDelegator(Delegator):
381 """Delegator used to tag user input with "stdin"."""
382 def insert(self, index, chars, tags=None):
383 if tags is None:
384 tags = "stdin"
385 self.delegate.insert(index, chars, tags)
386
387
388class MyRPCClient(rpc.RPCClient):

Callers

nothing calls this directly

Calls 1

insertMethod · 0.45

Tested by

no test coverage detected