New submission from Zaheer Merali <zaheermer...@gmail.com>:

It would be nice to have a future import to be able to prevent people in code 
doing:

try:
    ....
except Exception, e:
    ....

and make people do:

try:
    ....
except Exception as e:
    ....

----------
components: Interpreter Core
messages: 151058
nosy: Zaheer.Merali
priority: normal
severity: normal
status: open
title: Would be nice to have a future import that turned off old except style
type: enhancement
versions: Python 2.7

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue13767>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to