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

Class Call

IPython/core/tests/test_oinspect.py:105–115  ·  view source on GitHub ↗

This is the class docstring.

Source from the content-addressed store, hash-verified

103# A few generic objects we can then inspect in the tests below
104
105class Call(object):
106 """This is the class docstring."""
107
108 def __init__(self, x, y=1):
109 """This is the constructor docstring."""
110
111 def __call__(self, *a, **kw):
112 """This is the call docstring."""
113
114 def method(self, x, z=2):
115 """Some method's docstring"""
116
117class HasSignature(object):
118 """This is the class docstring."""

Callers 1

test_infoFunction · 0.85

Calls

no outgoing calls

Tested by 1

test_infoFunction · 0.68