Added stuff for managing connections and new Executioner backend base class

This commit is contained in:
Jason Gerard DeRose
2009-01-23 15:49:16 -07:00
committed by Rob Crittenden
parent e0b00d5981
commit f7375bb609
4 changed files with 280 additions and 6 deletions

View File

@@ -207,9 +207,9 @@ class ClassChecker(object):
"""
nose tear-down fixture.
"""
for name in ('ugettext', 'ungettext'):
if hasattr(context, name):
delattr(context, name)
for name in context.__dict__.keys():
delattr(context, name)