[Python-checkins] CVS: python/dist/src PLAN.txt,1.1.2.4,1.1.2.5

Guido van Rossum gvanrossum@users.sourceforge.net
Sun, 01 Jul 2001 12:52:46 -0700


Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv22729

Modified Files:
      Tag: descr-branch
	PLAN.txt 
Log Message:
Add note about making descriptors subclassable.


Index: PLAN.txt
===================================================================
RCS file: /cvsroot/python/python/dist/src/Attic/PLAN.txt,v
retrieving revision 1.1.2.4
retrieving revision 1.1.2.5
diff -C2 -r1.1.2.4 -r1.1.2.5
*** PLAN.txt	2001/07/01 19:06:11	1.1.2.4
--- PLAN.txt	2001/07/01 19:52:44	1.1.2.5
***************
*** 88,92 ****
  
  Make more (most?) built-in types subtypable -- with or without
! overridable allocation.
  
  Exceptions should be types.  This changes the rules, since now almost
--- 88,94 ----
  
  Make more (most?) built-in types subtypable -- with or without
! overridable allocation.  *** This includes descriptors!  It should be
! possible to write descriptors in Python, so metaclasses can do clever
! things with them. ***
  
  Exceptions should be types.  This changes the rules, since now almost