summaryrefslogtreecommitdiffstats
path: root/Lib/test/support
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-09-06 19:18:25 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-09-06 19:18:25 (GMT)
commit66ff01fede0a566376d7026b48554e7d75c2300a (patch)
treea528ae8e966ced8c85e63b4171e7e7706cdee17a /Lib/test/support
parent6703bb4984c708132937a94f58c2bae93c6a829b (diff)
downloadcpython-66ff01fede0a566376d7026b48554e7d75c2300a.zip
cpython-66ff01fede0a566376d7026b48554e7d75c2300a.tar.gz
cpython-66ff01fede0a566376d7026b48554e7d75c2300a.tar.bz2
Remove old-school inheritance
Diffstat (limited to 'Lib/test/support')
-rw-r--r--Lib/test/support/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py
index 0a5d1d4..5832ef6 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