Lines Matching full:first
16 >>> c1.first
24 >>> c1.first = 'will'
30 >>> del c1.first
34 AttributeError: first
35 >>> c1.first
38 AttributeError: first
39 >>> c1.first = 'drew'
40 >>> c1.first
49 >>> c1.first = 42
55 >>> c2.first
59 >>> del c2.first
60 >>> c2.first
63 AttributeError: first
64 >>> c2.first
67 AttributeError: first
71 AttributeError: first
89 >>> del c1.first
92 TypeError: Cannot delete the first attribute
93 >>> c1.first = 42
96 TypeError: The first attribute value must be a string
97 >>> c1.first = 'will'
114 >>> c1.first
122 >>> c1.first = 'will'
128 >>> del c1.first
131 TypeError: Cannot delete the first attribute
134 >>> c1.first = 'drew'
135 >>> c1.first
144 >>> c1.first = 42
147 TypeError: The first attribute value must be a string
156 >>> c2.first