From 425f698ed1fd9fcb2ea520dcba7262f82e73ae1c Mon Sep 17 00:00:00 2001 From: Ryan Williams Date: Sun, 17 Oct 2010 22:42:18 -0700 Subject: [PATCH] __loader__ is another of those sekkrit management module attributes. --- tests/mysqldb_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mysqldb_test.py b/tests/mysqldb_test.py index 89100cf..7eb3e52 100644 --- a/tests/mysqldb_test.py +++ b/tests/mysqldb_test.py @@ -126,7 +126,7 @@ class MySQLdbTester(LimitedTestCase): import MySQLdb as orig for key in dir(orig): if key not in ('__author__', '__path__', '__revision__', - '__version__'): + '__version__', '__loader__'): self.assert_(hasattr(MySQLdb, key), "%s %s" % (key, getattr(orig, key))) def test_connecting(self):