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

Class UserInputTaggingDelegator

Lib/idlelib/pyshell.py:380–385  ·  view source on GitHub ↗

Delegator used to tag user input with "stdin".

Source from the content-addressed store, hash-verified

378
379
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 1

__init__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…