[Python-checkins] CVS: python/dist/src PLAN.txt,1.4,1.5

Guido van Rossum gvanrossum@users.sourceforge.net
Wed, 08 Aug 2001 15:51:15 -0700


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

Modified Files:
	PLAN.txt 
Log Message:
Mark binary operators as done.

(This file could stand some reorganization -- it's hard to tell the
open items apart from those that are done or nearly done.)


Index: PLAN.txt
===================================================================
RCS file: /cvsroot/python/python/dist/src/PLAN.txt,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** PLAN.txt	2001/08/08 16:57:43	1.4
--- PLAN.txt	2001/08/08 22:51:13	1.5
***************
*** 6,10 ****
  Do binary operators properly.  nb_add should try to call self.__add__
  and other.__radd__.  I think I'll exclude base types that define any
! binary operator without setting the CHECKTYPES flag.
  
  Fix comparisons.  There's some nasty stuff here: when two types are
--- 6,11 ----
  Do binary operators properly.  nb_add should try to call self.__add__
  and other.__radd__.  I think I'll exclude base types that define any
! binary operator without setting the CHECKTYPES flag.  *** This is
! done, AFAICT.  Even supports __truediv__ and __floordiv__. ***
  
  Fix comparisons.  There's some nasty stuff here: when two types are