Skip to content

Comment Style Braces Parser for Python ( Python大括号风格编译工具 )

Notifications You must be signed in to change notification settings

xiaoyanbot/Python_Brace_Tool

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Python Brace Tool

Comment style braces parser for python

Simple but useful "braces" for python:

Example:

see before.py

Usage:

python brace.py < before.py > after.py

Before:

class myclass:#[ def init(self):#[ for i in range(10):#[ print i #] #] #]

c = myclass()

After:

class myclass:#[ def init(self):#[ for i in range(10):#[ print i #] #] #]

c = myclass()

About

Comment Style Braces Parser for Python ( Python大括号风格编译工具 )

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%