MCPcopy Create free account
hub / github.com/ipython/ipython / clone

Method clone

IPython/utils/io.py:36–37  ·  view source on GitHub ↗
(meth)

Source from the content-addressed store, hash-verified

34
35 # clone all methods not overridden:
36 def clone(meth):
37 return not hasattr(self, meth) and not meth.startswith('_')
38 for meth in filter(clone, dir(stream)):
39 try:
40 val = getattr(stream, meth)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected