[Python-checkins] CVS: python/dist/src/Lib types.py,1.14.10.2,1.14.10.3

Guido van Rossum gvanrossum@users.sourceforge.net
Wed, 06 Jun 2001 08:41:04 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv9590

Modified Files:
      Tag: descr-branch
	types.py 
Log Message:
Added ObjectType, (the most basic type) now that it's accessible.


Index: types.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/types.py,v
retrieving revision 1.14.10.2
retrieving revision 1.14.10.3
diff -C2 -r1.14.10.2 -r1.14.10.3
*** types.py	2001/05/06 02:31:13	1.14.10.2
--- types.py	2001/06/06 15:41:02	1.14.10.3
***************
*** 8,11 ****
--- 8,12 ----
  NoneType = type(None)
  TypeType = type(NoneType)
+ ObjectType = NoneType.__bases__[0]
  
  IntType = type(0)