exceptions are now accepted in the form of 'except Exception, e'

This commit is contained in:
David Halter
2013-07-19 01:29:16 +02:00
parent f754d1565f
commit 9b73f3ca3c

View File

@@ -75,7 +75,6 @@ older Python 2 features have been left out:
- Classes: Always Python 3 like, therefore all classes inherit from ``object``.
- Generators: No ``next()`` method. The ``__next__()`` method is used instead.
- Exceptions are only looked at in the form of ``Exception as e``, no comma!
**Slow Performance**