diff options
author | Hye-Shik Chang <hyeshik@gmail.com> | 2004-08-04 17:36:41 (GMT) |
---|---|---|
committer | Hye-Shik Chang <hyeshik@gmail.com> | 2004-08-04 17:36:41 (GMT) |
commit | 7df44b384a4391cfed0a4d26b7e314a06ae4d595 (patch) | |
tree | ca296981c3244abf8c42ac8f813e540fe9833e24 /Misc/NEWS | |
parent | 5910d81c979b79a98f3d5ac8dea81e84ab721c37 (diff) | |
download | cpython-7df44b384a4391cfed0a4d26b7e314a06ae4d595.zip cpython-7df44b384a4391cfed0a4d26b7e314a06ae4d595.tar.gz cpython-7df44b384a4391cfed0a4d26b7e314a06ae4d595.tar.bz2 |
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)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -70,6 +70,10 @@ Core and builtins - unicode.iswide() and unicode.width() is dropped and the East Asian 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 ----------------- |