diff options
author | Christian Heimes <christian@cheimes.de> | 2007-12-14 02:35:23 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-12-14 02:35:23 (GMT) |
commit | 90e10e79ea1be00489fd68e10e67911dda0567c9 (patch) | |
tree | c7e070c1d944fcdcced68537366fe1e841d4cf15 /Misc | |
parent | 52729ac856dea01cedc8661d1cfc2f58efe9a2ad (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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'. |