Disable more tests in Python2.6, because of set literals that don't exist there.

This commit is contained in:
Dave Halter
2017-09-03 02:01:43 +02:00
parent 957f2cedf4
commit ef89593896
4 changed files with 49 additions and 36 deletions

View File

@@ -295,6 +295,9 @@ x = 32
#< 7 (0,1), (0,7)
[x for x in something]
x = 3
# Not supported syntax in Python 2.6.
# python >= 2.7
#< 1 (0,1), (0,10)
{x:1 for x in something}
#< 10 (0,1), (0,10)