summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorHye-Shik Chang <hyeshik@gmail.com>2004-02-02 13:39:01 (GMT)
committerHye-Shik Chang <hyeshik@gmail.com>2004-02-02 13:39:01 (GMT)
commitff83c2bacc2acd782d20b589a02420df571b89a2 (patch)
tree7bcb6273b88c7db836ac703b7d6b13ba05632be2 /Misc/NEWS
parent96c44658b99ef2e25a977bce7f310cd2b442cd24 (diff)
downloadcpython-ff83c2bacc2acd782d20b589a02420df571b89a2.zip
cpython-ff83c2bacc2acd782d20b589a02420df571b89a2.tar.gz
cpython-ff83c2bacc2acd782d20b589a02420df571b89a2.tar.bz2
Fix input() builtin function to respect compiler flags.
(SF patch 876178, patch by mwh, unittest by perky)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e4332d8..9d2e354 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.4 alpha 1?
Core and builtins
-----------------
+- input() builtin function now respects compiler flags such as
+ __future__ statements. SF patch 876178.
+
- Removed PendingDeprecationWarning from apply(). apply() remains
deprecated, but the nuisance warning will not be issued.