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(''))