summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2003-01-03 19:16:14 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2003-01-03 19:16:14 (GMT)
commitaf6a27a704cd832f91e25b1052f4b6cc52a4e704 (patch)
treeff34bd57ae9ef045d524b8acdded723131fd20e8 /Misc
parentbb0246ac2528fbce1cbe25a26f852a4badb4baeb (diff)
downloadcpython-af6a27a704cd832f91e25b1052f4b6cc52a4e704.zip
cpython-af6a27a704cd832f91e25b1052f4b6cc52a4e704.tar.gz
cpython-af6a27a704cd832f91e25b1052f4b6cc52a4e704.tar.bz2
Allow PyFile_GetLine() to return Unicode objects. Fixes #660165.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 00008e5..0969651 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 2.3 alpha 2?
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.