diff options
author | Georg Brandl <georg@python.org> | 2006-05-17 14:06:07 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-05-17 14:06:07 (GMT) |
commit | c01b6aeede04d304c152a66bd49f7ec90e39a154 (patch) | |
tree | a555befbb3f73859f7907f06ea63bf44bdd2891d /Doc | |
parent | 402cc242f0e3c8cd7373893b44b911354ce9e09b (diff) | |
download | cpython-c01b6aeede04d304c152a66bd49f7ec90e39a154.zip cpython-c01b6aeede04d304c152a66bd49f7ec90e39a154.tar.gz cpython-c01b6aeede04d304c152a66bd49f7ec90e39a154.tar.bz2 |
Remove misleading comment about type-class unification.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libstdtypes.tex | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex index 83a1eed..ab3a838 100644 --- a/Doc/lib/libstdtypes.tex +++ b/Doc/lib/libstdtypes.tex @@ -1,12 +1,11 @@ \section{Built-in Types \label{types}} The following sections describe the standard types that are built into -the interpreter. Historically, Python's built-in types have differed -from user-defined types because it was not possible to use the built-in -types as the basis for object-oriented inheritance. With the 2.2 -release this situation has started to change, although the intended -unification of user-defined and built-in types is as yet far from -complete. +the interpreter. +\note{Historically (until release 2.2), Python's built-in types have +differed from user-defined types because it was not possible to use +the built-in types as the basis for object-oriented inheritance. +This limitation does not exist any longer.} The principal built-in types are numerics, sequences, mappings, files classes, instances and exceptions. |