Pythonistas Rejoice! Curly Braces Are In 1
Finally, we can do without the annoying "whitespace is signigicant" crap. You can import a new feature called braces from the __future__ module. For those who don’t know, the __future__ module contains new features that are not yet included in the current Python version.
Now, instead of doing this:
def foo():
# Ugh, I hate whitespace indents
print 'Hello Braces!'
You can do this:
from __future__ import braces
def foo() { print 'Hello Braces!' } # Only one line!!!11!!11
April Fools!

Whitespace indenting equates to consistent, readable code. It’s one of the things I like most about Python. Curly braces are the devil’s spawn.