Issue #2335: Backport set literals syntax from Python 3.x.

This commit is contained in:
Alexandre Vassalotti 2010-01-09 23:35:54 +00:00
parent e365613528
commit ee936a2130
24 changed files with 562 additions and 285 deletions

View file

@ -248,6 +248,7 @@ l[0]
l[3:4]
d = {'a': 2}
d = {}
s = {1}
t = ()
t = (1, 2)
l = []