summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorCollin Winter <collinw@gmail.com>2007-03-09 20:33:07 (GMT)
committerCollin Winter <collinw@gmail.com>2007-03-09 20:33:07 (GMT)
commite38051db87b92efeb09373bea3900cde073cda96 (patch)
tree880eb2a1597a55c9f0edabe92dbf22bbffc28a3b /Misc/NEWS
parent1bcffef959ce2424ab92d780cca06c9493eab6f9 (diff)
downloadcpython-e38051db87b92efeb09373bea3900cde073cda96.zip
cpython-e38051db87b92efeb09373bea3900cde073cda96.tar.gz
cpython-e38051db87b92efeb09373bea3900cde073cda96.tar.bz2
Patch #1491866: change the complex() constructor to allow parthensized forms. This means complex(repr(x)) now works instead of raising a ValueError.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 89304b0..a98accd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 2.6 alpha 1?
Core and builtins
-----------------
+- Patch #1491866: change the complex() constructor to allow parthensized
+ forms. This means complex(repr(x)) now works instead of raising a
+ ValueError.
+
- Patch #703779: unset __file__ in __main__ after running a file. This
makes the filenames the warning module prints much more sensible when
a PYTHONSTARTUP file is used.