[Python-checkins] python/dist/src/Misc NEWS,1.1282,1.1283

bcannon at users.sourceforge.net bcannon at users.sourceforge.net
Sat Apr 9 04:30:35 CEST 2005


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10651/Misc

Modified Files:
	NEWS 
Log Message:
Flush out support for ``class B(): pass`` syntax by adding support to the
'parser' module and 'compiler' package.

Closes patch #1176012.  Thanks logistix.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.1282
retrieving revision 1.1283
diff -u -d -r1.1282 -r1.1283
--- NEWS	7 Apr 2005 10:11:19 -0000	1.1282
+++ NEWS	9 Apr 2005 02:30:16 -0000	1.1283
@@ -24,7 +24,9 @@
 - Added two new builtins, any() and all().
 
 - Defining a class with empty parentheses is now allowed
-  (e.g., ``class C(): pass`` is no longer a syntax error)
+  (e.g., ``class C(): pass`` is no longer a syntax error).
+  Patch #1176012 added support to the 'parser' module and 'compiler' package
+  (thanks to logistix for that added support).
 
 - Patch #1115086: Support PY_LONGLONG in structmember.
 



More information about the Python-checkins mailing list