Why does this raise an error:
o = object()
o.i = 1
But this does not:
class A(object):
pass
a = A()
a.i = 1
?
|
Why does this raise an error:
But this does not:
? |
||||
|
|
|
Because built-in types don't have dictionaries associated with them to hold added attributes:
See? No But adding a subclass gives the attribute somewhere to go:
Saying that it's "because they're defined in C" isn't a "why". You could certainly define a type in C with an instance dictionary. |
|||
|
|
|
|
|||||
|