Gerard Flanagan wrote:

> Either way, the (c#) source is available for the above formatter and it
> looks like it would be straightforward to create a Python formatter by
> extending a base class and providing the following three things:
>
> 1) a list of python keywords

import keyword
print keyword.kwlist

> 2) a regex to match python comments

import tokenize
print tokenize.Comment

> 3) a regex to match python strings

import tokenize
print tokenize.String
print tokenize.Triple

</F> 



-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to