Description: Add upcall to super's __init__() so that expected attributes will
 be present.
Author: Barry Warsaw <barry@debian.org>
Bug: https://github.com/nose-devs/nose/issues/759

--- a/nose/suite.py
+++ b/nose/suite.py
@@ -573,6 +573,7 @@
     control.
     """
     def __init__(self, suite, finalize):
+        super(FinalizingSuiteWrapper, self).__init__()
         self.suite = suite
         self.finalize = finalize
 
--- a/nose/config.py
+++ b/nose/config.py
@@ -620,9 +620,6 @@
     def __getnewargs__(self):
         return ()
 
-    def __getattr__(self, attr):
-        return None
-
     def __nonzero__(self):
         return False
 
