There seems to be two reasons for a class to be "final" in Python.
1. Violation of Class Invariant
Classes that follow Singleton pattern have an invariant that there's a limited (pre-determined) number of instances. Any violation of this invariant in a subclass will be inconsistent with the class' intent, and would not work correctly. Examples:
bool: True, False; see Guido's comments
NoneType: None
NotImplementedType: NotImplemented
ellipsis: Ellipsis
There may be cases other than the Singleton pattern in this category but I'm not aware of any.
2. No Persuasive Use Case
A class implemented in C requires additional work to allow subclassing (at least in CPython). Doing such work without a convincing use case is not very attractive, so volunteers are less likely to come forward. Examples:
Note 1:
I originally thought there were valid use cases, but simply insufficient interest, in subclassing of function and operator.itemgetter. Thanks to @agf for pointing out that the use cases offered here and here are not convincing (see @agf comments to the question).
Note 2:
My concern is that another Python implementation might accidentally allow subclassing a class that's final in CPython. This may result in non-portable code (a use case may be weak, but someone might still write code that subclasses function if their Python supports it). This can be resolved by marking in Python documentation all built-in and standard library classes that cannot be subclassed, and requiring that all implementations follow CPython behavior in that respect.
Note 3:
The message produced by CPython in all the above cases is:
TypeError: type 'bool' is not an acceptable base type
It is quite cryptic, as numerous questions on this subject show. I'll submit a suggestion to add a paragraph to the documentation that explains final classes, and maybe even change the error message to:
TypeError: type 'bool' is final (non-extensible)
NoneTypeis another example. – Duncan Apr 8 '12 at 9:57function, and now needs to refactor the code to avoid this inheritance). – max Apr 9 '12 at 20:14NotImplementedType(i.e.,type(NotImplemented)) andellipsis(i.e.,type(...)) are two more examples. LikeNone, there is no reason to have more than one instance of these classes, and if this was allowed, it would be more awkward to check for them (if x is Nonewould have to becomeif isinstance(x, type(None))). I suppose, in principle, you could get a complete list by looking though the source for the value oftp_flagsin type definitions. – James Apr 10 '12 at 11:46itemgetteragreed 100% that it's more reasonable (and much easier!) to fix the equality behavior than to do the work required to allow subclassing. The discussion of thefunctionsubclassing were too complicated for me to follow in full; if you feel the use case for subclassing there is weak, I'd take you word on it. Overall, it seems that your comments seem to translate directly into the two reasons we've identified so far: "break something" <=> "singleton pattern"; "not useful" <=> "insufficient interest". So I begin to feel that we're close to consensus. – max Apr 11 '12 at 19:30