[Python-checkins] CVS: python/dist/src/Misc NEWS,1.235,1.236
Guido van Rossum
gvanrossum@users.sourceforge.net
Thu, 06 Sep 2001 15:03:00 -0700
Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv15476
Modified Files:
NEWS
Log Message:
Rename 'getset' to 'property'.
Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.235
retrieving revision 1.236
diff -C2 -d -r1.235 -r1.236
*** NEWS 2001/09/06 16:05:17 1.235
--- NEWS 2001/09/06 22:02:58 1.236
***************
*** 65,73 ****
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
- The syntax of floating-point and imaginary literals has been
--- 65,73 ----
explanation, see http://www.python.org/2.2/descrintro.html#cooperation
! - 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