# HG changeset patch # User Bastien Orivel # Date 1465045517 -7200 # Node ID e61b332f92ee21a049f1555c18ff62b4625a2a91 # Parent 530c671e17bf40213175abd044380b2105355828 Add a test for DictComp. diff --git a/tests/test_parse_files/test_dictcomp.py b/tests/test_parse_files/test_dictcomp.py new file mode 100644 --- /dev/null +++ b/tests/test_parse_files/test_dictcomp.py @@ -0,0 +1,1 @@ +d = {key: value for (key, value) in imaginary_dict.items() if key % 12}