# vim: set filetype=python :
{}
---
()
---
[]
---
foo()
---
d = {"foo" : "bar"}
---
d = ["foo"]
---
d = {"foo"}
---
d = ("foo",)
---
d = foo("foo")
---
d = {"foo" : "bar", "baz" : "quux"}
---
d = ["foo", "bar"]
---
d = {"foo", "bar"}
---
d = ("foo", "bar")
---
d = foo(1, 2, 3)
---
    d = {"foo" : "bar"}
---
1
2
3
d = {"foo" : "bar"}
"foo"
---
d = {   "foo" : "bar"  }
---
d = {"foo" : "bar","baz" : "quux"}
---
d = {"foo": "bar", "baz":"quux"}
---
d = (1,2)
---
d = (   1, 2   )
---
d = (   1,    2   )
---
d = {
    "foo" : "bar", "baz" : "quux",
}
---
d = {
    "foo" : "bar", "baz" : "quux", "spam" : "eggs", "other" : "thing",
    "another" : "thing"
}
---
d = {
"foo" : "bar", "baz" : "quux",
  "spam" : "eggs", "other" : "thing",
                "another" : "thing",
}
---
d = {
    "foo", "foo", "bar", "bar", "baz", "baz", "quux", "quux", "spam", "spam",
    "eggs", "eggs",
}
---
d = {
    "foo", "foo",
"bar", "bar", "baz", "baz", "quux",
                 "quux", "spam", "spam",
    "eggs", "eggs",
}
---
d = [
    "foo", "foo", "bar", "bar", "baz", "baz", "quux", "quux", "spam", "spam",
    "eggs", "eggs",
]
---
d = [
    "foo", "foo",
"bar", "bar", "baz", "baz", "quux",
                 "quux", "spam", "spam",
    "eggs", "eggs",
]
---
d = {"foo" : "bar", "baz" : "quux", "spam" : "eggs", "other" : "thing",
    "another" : "thing"}
---
        d = {
"foo" : "bar",
        "baz" : "quux",
}
---
                                d = {
    "foo" : "bar", "baz" : "quux", "spam" : "eggs", "other" : "thing",
    "another" : "thing"
}
---
"awefoijaowf;oiwfe[qpk1240i-"
---
foo(bar)
foo(bar)
foo(bar)
foo(bar)
foo(bar)
foo(bar)
foo(bar)
foo(bar)
foo(bar)
foo(bar)
foo(bar)
foo(bar)
foo(bar)
foo(bar)
foo(bar)
foo(bar)
foo(bar)
foo(bar)
foo(bar)
foo(bar)
---
foo(
bar,baz
)
---
d = foo("foo","bar", "baz","quux", "spam","eggs", "other","thing",
    "another","thing")
---
                                                                        d = [1, 2, 3, 4]
---
