[Python-checkins] r46023 - python/trunk/Doc/lib/libstdtypes.tex

georg.brandl python-checkins at python.org
Wed May 17 16:06:09 CEST 2006


Author: georg.brandl
Date: Wed May 17 16:06:07 2006
New Revision: 46023

Modified:
   python/trunk/Doc/lib/libstdtypes.tex
Log:
Remove misleading comment about type-class unification.



Modified: python/trunk/Doc/lib/libstdtypes.tex
==============================================================================
--- python/trunk/Doc/lib/libstdtypes.tex	(original)
+++ python/trunk/Doc/lib/libstdtypes.tex	Wed May 17 16:06:07 2006
@@ -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.


More information about the Python-checkins mailing list