[Python-Dev] syntax misfeature (exception)

Neal Becker ndbecker2 at gmail.com
Sat Jan 20 16:25:54 CET 2007


I accidentally wrote:

try:
 ...
except a,b:

rather than:

try
 ...
except (a,b):

It appears that the 1st example syntax is silently accepted, but doesn't
seem to work.  Is this true?  If so, I'd say it's a wart.



More information about the Python-Dev mailing list