[Python-checkins] CVS: python/dist/src/Misc NEWS,1.214,1.215

Tim Peters tim_one@users.sourceforge.net
Tue, 28 Aug 2001 13:56:29 -0700


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

Modified Files:
	NEWS 
Log Message:
Note change in fp literal syntax (e.g. "3e-" worked by accident before).


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.214
retrieving revision 1.215
diff -C2 -d -r1.214 -r1.215
*** NEWS	2001/08/27 06:37:48	1.214
--- NEWS	2001/08/28 20:56:27	1.215
***************
*** 4,7 ****
--- 4,10 ----
  Core
  
+ + An old tokenizer bug allowed floating point literals with an incomplete
+   exponent, such as 1e and 3.1e-.  Such literals now raise SyntaxError.
+ 
  Library