[Python-checkins] CVS: python/dist/src/Misc NEWS,1.290,1.290.2.1
Barry Warsaw
bwarsaw@users.sourceforge.net
2001年10月19日 08:04:38 -0700
Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv21381/Misc
Modified Files:
Tag: r22b1-branch
NEWS
Log Message:
Merging MAL's trunk changes into the branch:
Additional test and documentation for the unicode() changes.
This patch should also be applied to the 2.2b1 trunk.
Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.290
retrieving revision 1.290.2.1
diff -C2 -d -r1.290 -r1.290.2.1
*** NEWS 2001年10月19日 05:35:40 1.290
--- NEWS 2001年10月19日 15:04:36 1.290.2.1
***************
*** 45,49 ****
objects, and calling a __unicode__ method if it exists.
unicode(obj, encoding) and unicode(obj, encoding, errors) still
! require an 8-bit string argument.
- isinstance() now allows any object as the first argument and a
--- 45,49 ----
objects, and calling a __unicode__ method if it exists.
unicode(obj, encoding) and unicode(obj, encoding, errors) still
! require an 8-bit string or character buffer argument.
- isinstance() now allows any object as the first argument and a