]> granicus.if.org Git - python/commitdiff
Rename 'getset' to 'property'.
authorGuido van Rossum <guido@python.org>
Thu, 6 Sep 2001 22:02:58 +0000 (22:02 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 6 Sep 2001 22:02:58 +0000 (22:02 +0000)
Misc/NEWS

index ceb1c066215d6ad6f73833d9fa07ad49f06b4a87..243aa457acb1b429475778363e0b99ae66d409f7 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -64,11 +64,11 @@ Core
   "cooperative super calls" in a multiple inheritance setting.  For an
   explanation, see http://www.python.org/2.2/descrintro.html#cooperation
 
-- A new built-in type, getset, has been added.  This enables the
-  creation of "computed attributes".  Such attributes are implemented
-  by getter and setter functions (or only one of these for read-only
-  or write-only attributes), without the need to override
-  __getattr__.  See http://www.python.org/2.2/descrintro.html#getset
+- A new built-in type, property, has been added.  This enables the
+  creation of "properties".  These are attributes implemented by
+  getter and setter functions (or only one of these for read-only or
+  write-only attributes), without the need to override __getattr__.
+  See http://www.python.org/2.2/descrintro.html#property
 
 - The syntax of floating-point and imaginary literals has been
   liberalized, to allow leading zeroes.  Examples of literals now