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

Guido van Rossum guido@cnri.reston.va.us
Fri, 10 Mar 2000 18:18:14 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Lib
In directory eric:/home/guido/hp/mal/py-patched/Lib

Modified Files:
	types.py 
Log Message:
Marc-Andre Lemburg: add UnicodeType.


Index: types.py
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Lib/types.py,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** types.py	2000/02/04 15:28:41	1.13
--- types.py	2000/03/10 23:18:11	1.14
***************
*** 18,21 ****
--- 18,22 ----
  
  StringType = type('')
+ UnicodeType = type(u'')
  BufferType = type(buffer(''))