From: Mike Bayer Date: Wed, 14 Jul 2010 00:40:58 +0000 (-0400) Subject: restore py2k directive that got whacked by python tidy X-Git-Tag: rel_0_6_3~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ccafaab2003a8aebc1f8f7fd42d464d94649563a;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git restore py2k directive that got whacked by python tidy --- diff --git a/test/base/test_except.py b/test/base/test_except.py index 09a9eb7b4f..78a534e671 100644 --- a/test/base/test_except.py +++ b/test/base/test_except.py @@ -4,10 +4,10 @@ from sqlalchemy import exc as sa_exceptions from sqlalchemy.test import TestBase -# Py3K StandardError = BaseException Py2K - +# Py3K +#StandardError = BaseException +# Py2K from exceptions import StandardError, KeyboardInterrupt, SystemExit - # end Py2K