diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2003-01-03 19:16:14 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2003-01-03 19:16:14 (GMT) |
commit | af6a27a704cd832f91e25b1052f4b6cc52a4e704 (patch) | |
tree | ff34bd57ae9ef045d524b8acdded723131fd20e8 /Misc | |
parent | bb0246ac2528fbce1cbe25a26f852a4badb4baeb (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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. |