From: Antoine Pitrou Date: Fri, 6 Sep 2013 19:18:25 +0000 (+0200) Subject: Remove old-school inheritance X-Git-Tag: v3.4.0a2~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=66ff01fede0a566376d7026b48554e7d75c2300a;p=python Remove old-school inheritance --- diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py index 0a5d1d4b67..5832ef66e6 100644 --- a/Lib/test/support/__init__.py +++ b/Lib/test/support/__init__.py @@ -2063,7 +2063,7 @@ def patch(test_instance, object_to_patch, attr_name, new_value): setattr(object_to_patch, attr_name, new_value) -class SuppressCoreFiles(object): +class SuppressCoreFiles: """Try to prevent core files from being created.""" old_limit = None