"encoded_modules/module_koi8_r.py",
# TODO Fix: F811 Redefinition of unused name
"test_buffer.py",
- "test_ctypes/test_arrays.py",
- "test_ctypes/test_functions.py",
"test_dataclasses/__init__.py",
"test_descr.py",
"test_enum.py",
"test_functools.py",
- "test_genericclass.py",
"test_grammar.py",
"test_import/__init__.py",
- "test_keywordonlyarg.py",
"test_pkg.py",
- "test_subclassinit.py",
"test_yield_from.py",
"time_hashlib.py",
]
class T(Array):
pass
with self.assertRaises(AttributeError):
- class T(Array):
+ class T2(Array):
_type_ = c_int
with self.assertRaises(AttributeError):
- class T(Array):
+ class T3(Array):
_length_ = 13
def test_bad_length(self):
_type_ = c_int
_length_ = - sys.maxsize * 2
with self.assertRaises(ValueError):
- class T(Array):
+ class T2(Array):
_type_ = c_int
_length_ = -1
with self.assertRaises(TypeError):
- class T(Array):
+ class T3(Array):
_type_ = c_int
_length_ = 1.87
with self.assertRaises(OverflowError):
- class T(Array):
+ class T4(Array):
_type_ = c_int
_length_ = sys.maxsize * 2
_type_ = "i"
with self.assertRaises(TypeError):
- class X(object, _Pointer):
+ class X2(object, _Pointer):
pass
with self.assertRaises(TypeError):
- class X(object, _SimpleCData):
+ class X3(object, _SimpleCData):
_type_ = "i"
with self.assertRaises(TypeError):
- class X(object, Structure):
+ class X4(object, Structure):
_fields_ = []
def test_c_char_parm(self):
return ()
d = C_too_few()
with self.assertRaises(TypeError):
- class D(d): ...
+ class E(d): ...
def test_mro_entry_errors_2(self):
class C_not_callable:
return object
c = C_not_tuple()
with self.assertRaises(TypeError):
- class D(c): ...
+ class E(c): ...
def test_mro_entry_metaclass(self):
meta_args = []
pass
self.assertEqual(str(err.exception), "name 'b' is not defined")
with self.assertRaises(NameError) as err:
- f = lambda v=a, x=b, *, y=c, z=d: None
+ g = lambda v=a, x=b, *, y=c, z=d: None
self.assertEqual(str(err.exception), "name 'b' is not defined")
super().__init__(name, bases, namespace)
with self.assertRaises(TypeError):
- class MyClass(metaclass=MyMeta, otherarg=1):
+ class MyClass2(metaclass=MyMeta, otherarg=1):
pass
class MyMeta(type):
super().__init__(name, bases, namespace)
self.otherarg = otherarg
- class MyClass(metaclass=MyMeta, otherarg=1):
+ class MyClass3(metaclass=MyMeta, otherarg=1):
pass
- self.assertEqual(MyClass.otherarg, 1)
+ self.assertEqual(MyClass3.otherarg, 1)
def test_errors_changed_pep487(self):
# These tests failed before Python 3.6, PEP 487
self.otherarg = otherarg
return self
- class MyClass(metaclass=MyMeta, otherarg=1):
+ class MyClass2(metaclass=MyMeta, otherarg=1):
pass
- self.assertEqual(MyClass.otherarg, 1)
+ self.assertEqual(MyClass2.otherarg, 1)
def test_type(self):
t = type('NewClass', (object,), {})