What is the difference between \',\' and \'as\' in except statements, eg:
try:
pass
except Exception, exception:
pass
and:
The definitive document is PEP-3110: Catching Exceptions
Summary:
as is required to assign an exception to a variable.as syntax, since it is far less ambiguous and forward compatible with Python 3.x.as isn't supported.