MCPcopy Create free account
hub / github.com/ipython/traitlets / Foo

Class Foo

tests/config/test_application.py:31–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29
30
31class Foo(Configurable):
32 i = Integer(
33 0,
34 help="""
35 The integer i.
36
37 Details about i.
38 """,
39 ).tag(config=True)
40 j = Integer(1, help="The integer j.").tag(config=True)
41 name = Unicode("Brian", help="First name.").tag(config=True)
42 la = List([]).tag(config=True)
43 li = List(Integer()).tag(config=True)
44 fdict = Dict().tag(config=True, multiplicity="+")
45
46
47class Bar(Configurable):

Callers 2

init_fooMethod · 0.70
__init__Method · 0.70

Calls 5

UnicodeClass · 0.90
ListClass · 0.90
DictClass · 0.90
IntClass · 0.90
tagMethod · 0.80

Tested by 2

init_fooMethod · 0.56
__init__Method · 0.56