class documentation

class MatchConstantTest(MatchAstTestCase): (source)

View In Hierarchy

Undocumented

Method test_bool Undocumented
Method test_bool_38 Undocumented
Method test_bytes Undocumented
Method test_bytes_38 Undocumented
Method test_ellipsis Undocumented
Method test_ellipsis_38 Undocumented
Method test_num Undocumented
Method test_num_38 Undocumented
Method test_str Undocumented
Method test_str_38 Undocumented
Method test_unicode Undocumented
Method test_unicode_38 Undocumented

Inherited from MatchAstTestCase:

Method assertTracesEqual Undocumented
Method _get_traces Undocumented
Method _parse Undocumented
@test_utils.skipFromPy((3, 8), reason='bools are ast.Constant in 3.8+')
def test_bool(self): (source)

Undocumented

@test_utils.skipBeforePy((3, 8), reason='bools are ast.Constant in 3.8+')
def test_bool_38(self): (source)

Undocumented

@test_utils.skipFromPy((3, 8), reason='byte strings are ast.Constant in 3.8+')
def test_bytes(self): (source)

Undocumented

@test_utils.skipBeforePy((3, 8), reason='byte strings are ast.Constant in 3.8+')
def test_bytes_38(self): (source)

Undocumented

@test_utils.skipFromPy((3, 8), reason='ellipsis are ast.Constant in 3.8+')
def test_ellipsis(self): (source)

Undocumented

@test_utils.skipBeforePy((3, 8), reason='ellipsis are ast.Constant in 3.8+')
def test_ellipsis_38(self): (source)

Undocumented

@test_utils.skipFromPy((3, 8), reason='numbers are ast.Constant in 3.8+')
def test_num(self): (source)

Undocumented

@test_utils.skipBeforePy((3, 8), reason='numbers are ast.Constant in 3.8+')
def test_num_38(self): (source)

Undocumented

@test_utils.skipFromPy((3, 8), reason='strings are ast.Constant in 3.8+')
def test_str(self): (source)

Undocumented

@test_utils.skipBeforePy((3, 8), reason='strings are ast.Constant in 3.8+')
def test_str_38(self): (source)

Undocumented

@test_utils.skipFromPy((3, 8), reason='unicode strings are ast.Constant in 3.8+')
def test_unicode(self): (source)

Undocumented

@test_utils.skipBeforePy((3, 8), reason='unicode strings are ast.Constant in 3.8+')
def test_unicode_38(self): (source)

Undocumented