yet another test

This commit is contained in:
Anthony Scopatz 2015-09-26 20:32:26 -04:00
parent ba3b7511c4
commit d81406f1de

View file

@ -414,6 +414,10 @@ def test_dict_two_comma():
def test_dict_three():
yield check_ast, '{42: 65, 6: 28, 1: 2}'
@skip_if(VER_MAJOR_MINOR < VER_3_5)
def test_dict_from_dict_two_xy():
yield check_ast, '{"x": 1, **{"y": 2}}'
@skip_if(VER_MAJOR_MINOR < VER_3_5)
def test_dict_from_dict_two_x_first():
yield check_ast, '{"x": 1, **{"x": 2}}'