[Python-checkins] CVS: python/dist/src/Misc unicode.txt,3.1,3.2

Barry A. Warsaw python-dev@python.org
Mon, 20 Mar 2000 11:36:38 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Misc
In directory anthem:/home/bwarsaw/projects/python/Misc

Modified Files:
	unicode.txt 
Log Message:
On 17-Mar-2000, Marc-Andre Lemburg said:

    Attached you find an update of the Unicode implementation.

    The patch is against the current CVS version. I would appreciate
    if someone with CVS checkin permissions could check the changes
    in.

    The patch contains all bugs and patches sent this week and also
    fixes a leak in the codecs code and a bug in the free list code
    for Unicode objects (which only shows up when compiling Python
    with Py_DEBUG; thanks to MarkH for spotting this one).


Index: unicode.txt
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Misc/unicode.txt,v
retrieving revision 3.1
retrieving revision 3.2
diff -C2 -r3.1 -r3.2
*** unicode.txt	2000/03/10 23:14:11	3.1
--- unicode.txt	2000/03/20 16:36:35	3.2
***************
*** 744,749 ****
  be used.
  
! XXX There should be a short-cut open(filename,mode,encoding) available which
!     also assures that mode contains the 'b' character when needed.
  
  
--- 744,750 ----
  be used.
  
! The codecs module should provide a short-cut open(filename,mode,encoding)
! available which also assures that mode contains the 'b' character when
! needed.
  
  
***************
*** 811,814 ****
--- 812,819 ----
          http://www.nada.kth.se/i18n/ucs/unicode-iso10646-oview.html
  
+ For comparison:
+ 	Introducing Unicode to ECMAScript --
+ 	http://www-4.ibm.com/software/developer/library/internationalization-support.html
+ 
  Encodings:
  
***************
*** 833,837 ****
  History of this Proposal:
  -------------------------
! 1.2: 
  1.1: Added note about comparisons and hash values. Added note about
       case mapping algorithms. Changed stream codecs .read() and
--- 838,842 ----
  History of this Proposal:
  -------------------------
! 1.2: Removed POD about codecs.open()
  1.1: Added note about comparisons and hash values. Added note about
       case mapping algorithms. Changed stream codecs .read() and