]> granicus.if.org Git - python/commitdiff
Remove old-school inheritance
authorAntoine Pitrou <solipsis@pitrou.net>
Fri, 6 Sep 2013 19:18:25 +0000 (21:18 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Fri, 6 Sep 2013 19:18:25 +0000 (21:18 +0200)
Lib/test/support/__init__.py

index 0a5d1d4b6722a1a5754431d4be7a4e729b9632ec..5832ef66e6fdb4cff89d591cbc36038c5fabf3d9 100644 (file)
@@ -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