summaryrefslogtreecommitdiff
path: root/tests/mysqldb_test.py
diff options
context:
space:
mode:
authorRyan Williams <breath@alum.mit.edu>2010-10-17 22:42:18 -0700
committerRyan Williams <breath@alum.mit.edu>2010-10-17 22:42:18 -0700
commit425f698ed1fd9fcb2ea520dcba7262f82e73ae1c (patch)
tree540c97dbe418c633cb99955467f5bfc87a035d18 /tests/mysqldb_test.py
parenta168dd90e2068012a4ec3388f3af5f2ef0f4aeaf (diff)
downloadeventlet-425f698ed1fd9fcb2ea520dcba7262f82e73ae1c.tar.gz
__loader__ is another of those sekkrit management module attributes.
Diffstat (limited to 'tests/mysqldb_test.py')
-rw-r--r--tests/mysqldb_test.py2
1 files changed, 1 insertions, 1 deletions
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):