summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-07-12 07:28:29 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-07-12 07:28:29 (GMT)
commita1f10901097e1a3788314a6aee49edf3690dd0b4 (patch)
tree56f7a9b54dcadeaa2db2e2cb5e8fce9025a3c4ba /Misc
parent7e49c6eee88c72c53969da31db95a526742191ef (diff)
downloadcpython-a1f10901097e1a3788314a6aee49edf3690dd0b4.zip
cpython-a1f10901097e1a3788314a6aee49edf3690dd0b4.tar.gz
cpython-a1f10901097e1a3788314a6aee49edf3690dd0b4.tar.bz2
Actually change the MAGIC #. Create a new section for 2.5c1 and mention the impact of changing the MAGIC #.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS21
1 files changed, 19 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b352765..114664f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -4,6 +4,25 @@ Python News
(editors: check NEWS.help for information about editing NEWS using ReST.)
+What's New in Python 2.5 release candidate 1?
+=============================================
+
+*Release date: XX-AUG-2006*
+
+Core and builtins
+-----------------
+
+- Bug #1520864: unpacking singleton tuples in for loop (for x, in) work
+ again. Fixing this problem required changing the .pyc magic number.
+ This means that .pyc files generated before 2.5c1 will be regenerated.
+
+Library
+-------
+
+Extension Modules
+-----------------
+
+
What's New in Python 2.5 beta 2?
================================
@@ -12,8 +31,6 @@ What's New in Python 2.5 beta 2?
Core and builtins
-----------------
-- Bug #1520864: unpacking singleton tuples in for loop (for x, in) work again.
-
- Bug #1441486: The literal representation of -(sys.maxint - 1)
again evaluates to a int object, not a long.