Comment style braces parser for python
Simple but useful "braces" for python:
see before.py
python brace.py < before.py > after.py
class myclass:#[
def init(self):#[
for i in range(10):#[
print i
#]
#]
#]
c = myclass()
class myclass:#[
def init(self):#[
for i in range(10):#[
print i
#]
#]
#]
c = myclass()