[Python-checkins] CVS: python/nondist/peps pep-0238.txt,1.5,1.6

Moshe Zadka moshez@users.sourceforge.net
Sun, 22 Jul 2001 08:03:28 -0700


Update of /cvsroot/python/python/nondist/peps
In directory usw-pr-cvs1:/tmp/cvs-serv9862

Modified Files:
	pep-0238.txt 
Log Message:
Changed to reflect Guido's new reality.


Index: pep-0238.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0238.txt,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** pep-0238.txt	2001/07/22 04:24:09	1.5
--- pep-0238.txt	2001/07/22 15:03:26	1.6
***************
*** 85,94 ****
      is compiled to FUTURE_DIV.
  
  
- Open Issues
  
      Should the // operator be renamed to "div"?
  
      Should the // be made into a function called "div"?
  
  
--- 85,101 ----
      is compiled to FUTURE_DIV.
  
+     This is not yet implemented in the Python 2.2 release.
  
  
+ FAQ
+ 
      Should the // operator be renamed to "div"?
  
+     No. There are problems with new keywords. 
+ 
      Should the // be made into a function called "div"?
+ 
+     No. People expect to be able to write math expressions directly
+     in Python.