Lines Matching full:parent
14 p = m.Parent()
15 assert capture == "Allocating parent."
29 assert capture == "Releasing parent."
32 p = m.Parent()
33 assert capture == "Allocating parent."
44 Releasing parent.
53 p = m.Parent()
54 assert capture == "Allocating parent."
68 assert capture == "Releasing parent."
71 p = m.Parent()
72 assert capture == "Allocating parent."
83 Releasing parent.
104 Releasing parent.
111 class Derived(m.Parent):
126 Releasing parent.
133 class Derived(m.Parent, m.Child):
135 m.Parent.__init__(self)
151 Releasing parent.
161 p = m.Parent()
162 assert capture == "Allocating parent."
170 assert capture == "Releasing parent."
173 p = m.Parent()
174 assert capture == "Allocating parent."
182 assert capture == "Releasing parent."
189 p = m.Parent(m.Child())
195 Allocating parent.
204 Releasing parent.