diff options
author | Mike Taves <mwtoews@gmail.com> | 2021-05-19 11:00:07 +1200 |
---|---|---|
committer | Mike Taves <mwtoews@gmail.com> | 2021-05-19 11:00:07 +1200 |
commit | aab61472c0208345ca20e3d9b1d3797e657687b8 (patch) | |
tree | 5c18507fd2b4093bc26136ea55a1d2d3b8ae4bbb /numpy/distutils/tests | |
parent | 39110f34ebc5e445ebea59833e621e4404c38be4 (diff) | |
download | numpy-aab61472c0208345ca20e3d9b1d3797e657687b8.tar.gz |
MAINT: Python3 classes do not need to inherit from object
Diffstat (limited to 'numpy/distutils/tests')
-rw-r--r-- | numpy/distutils/tests/test_ccompiler_opt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/tests/test_ccompiler_opt.py b/numpy/distutils/tests/test_ccompiler_opt.py index d2b0a4c58..9c54ed66b 100644 --- a/numpy/distutils/tests/test_ccompiler_opt.py +++ b/numpy/distutils/tests/test_ccompiler_opt.py @@ -73,7 +73,7 @@ class FakeCCompilerOpt(CCompilerOpt): def dist_log(*args, stderr=False): pass -class _Test_CCompilerOpt(object): +class _Test_CCompilerOpt: arch = None # x86_64 cc = None # gcc |