From 9b73f3ca3c31d912403ee8c2f62ac5a6d40150ba Mon Sep 17 00:00:00 2001 From: David Halter Date: Fri, 19 Jul 2013 01:29:16 +0200 Subject: [PATCH] exceptions are now accepted in the form of 'except Exception, e' --- docs/docs/features.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/docs/features.rst b/docs/docs/features.rst index a0674131..90d816b6 100644 --- a/docs/docs/features.rst +++ b/docs/docs/features.rst @@ -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**