summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-12-14 02:35:23 (GMT)
committerChristian Heimes <christian@cheimes.de>2007-12-14 02:35:23 (GMT)
commit90e10e79ea1be00489fd68e10e67911dda0567c9 (patch)
treec7e070c1d944fcdcced68537366fe1e841d4cf15 /Misc
parent52729ac856dea01cedc8661d1cfc2f58efe9a2ad (diff)
downloadcpython-90e10e79ea1be00489fd68e10e67911dda0567c9.zip
cpython-90e10e79ea1be00489fd68e10e67911dda0567c9.tar.gz
cpython-90e10e79ea1be00489fd68e10e67911dda0567c9.tar.bz2
Fixed bug #1620: New @spam.getter property syntax modifies the property in place.
I added also the feature that a @prop.getter decorator does not overwrite the doc string of the property if it was given as an argument to property().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0d420d0..3c95ca5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6 alpha 1?
Core and builtins
-----------------
+- Issue #1620: New property decorator syntax was modifying the decorator
+ in place instead of creating a new decorator object.
+
- Issue #1580: New free format floating point representation based on
"Floating-Point Printer Sample Code", by Robert G. Burger. For example
repr(11./5) now returns '2.2' instead of '2.2000000000000002'.