From b957b4fea689180147e1c6c7fc35dace7eaf31e3 2011-07-01 23:42:57
From: Thomas Kluyver <takowl@gmail.com>
Date: 2011-07-01 23:42:57
Subject: [PATCH] Describe the IPython situation in What's New docs.

---

diff --git a/docs/source/whatsnew/development.txt b/docs/source/whatsnew/development.txt
index 09d1132..f2fd5df 100644
--- a/docs/source/whatsnew/development.txt
+++ b/docs/source/whatsnew/development.txt
@@ -57,6 +57,16 @@ maintained separately and updated from the main codebase. Its code can be found
 `here <https://github.com/ipython/ipython-py3k>`_. Note that the parallel
 computing features do not yet work in Python 3.
 
+Unicode
+-------
+
+Entering non-ascii characters in unicode literals (``u"€ø"``) now works properly
+on all platforms. However, entering these in byte/string literals (``"€ø"``)
+will not work as expected on Windows (or any platform where the terminal encoding
+is not UTF-8, as it typically is for Linux & Mac OS X). You can use escape sequences
+(``"\xe9\x82"``) to get bytes above 128, or use unicode literals and encode
+them. This is a limitation of Python 2 which we cannot easily work around.
+
 New features
 ------------