Allow PyFile_GetLine() to return Unicode objects. Fixes #660165.
diff --git a/Misc/NEWS b/Misc/NEWS
index 00008e5..0969651 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@
 Core and builtins
 -----------------
 
+- raw_input can now return Unicode objects.
+
 - List objects' sort() method now accepts None as the comparison function.
   Passing None is semantically identical to calling sort() with no
   arguments.