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)
diff --git a/Misc/NEWS b/Misc/NEWS
index 630c85e..aea6867 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -70,6 +70,10 @@
- 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
-----------------