[Python-checkins] python/dist/src/Misc NEWS,1.1068,1.1069

perky at users.sourceforge.net perky at users.sourceforge.net
Wed Aug 4 19:36:43 CEST 2004


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3131/Misc

Modified Files:
	NEWS 
Log Message:
SF #941229: Decode source code with sys.stdin.encoding in interactive
modes like non-interactive modes.  This allows for non-latin-1 users
to write unicode strings directly and sets Japanese users free from
weird manual escaping <wink> in shift_jis environments.
(Reviewed by Martin v. Loewis)


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.1068
retrieving revision 1.1069
diff -C2 -d -r1.1068 -r1.1069
*** NEWS	4 Aug 2004 07:38:34 -0000	1.1068
--- NEWS	4 Aug 2004 17:36:39 -0000	1.1069
***************
*** 71,74 ****
--- 71,78 ----
    Width support is moved to unicodedata extension module.
  
+ - Patch #941229: The source code encoding in interactive mode
+   now refers sys.stdin.encoding not just ISO-8859-1 anymore.  This
+   allows for non-latin-1 users to write unicode strings directly.
+ 
  Extension modules
  -----------------



More information about the Python-checkins mailing list