[Python-checkins] python/dist/src/Lib types.py,1.26,1.27

montanaro@sourceforge.net montanaro@sourceforge.net
Tue, 21 May 2002 16:17:15 -0700


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

Modified Files:
	types.py 
Log Message:
add BooleanType


Index: types.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/types.py,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** types.py	1 Apr 2002 00:28:59 -0000	1.26
--- types.py	21 May 2002 23:17:12 -0000	1.27
***************
*** 17,20 ****
--- 17,21 ----
  LongType = long
  FloatType = float
+ BooleanType = bool
  try:
      ComplexType = complex