Closed edgao closed 10 years ago
Something wrong with Tokenizer. Try executing this line:
x = {"key": 5}
Tokenizer wants whitespace after the quotes, but putting a space afterward says that there's unexpected whitespace.
That said, this works fine:
x = ["value"]
Another problem, again involving dictionaries:
x = {[1, 2, 3]: 5}
Something wrong with Tokenizer. Try executing this line:
Tokenizer wants whitespace after the quotes, but putting a space afterward says that there's unexpected whitespace.
That said, this works fine: