doc/tools/pyjsrest.py
changeset 10067 16c554c76eb4
parent 9661 c170ec8a4525
child 10232 cda1bdc3652e
equal deleted inserted replaced
10066:313ce53a7232 10067:16c554c76eb4
     1 #!/usr/bin/env python
     1 #!/usr/bin/env python
     2 """
     2 """
     3 Parser for Javascript comments.
     3 Parser for Javascript comments.
     4 """
     4 """
     5 from __future__ import with_statement
       
     6 
       
     7 import os.path as osp
     5 import os.path as osp
     8 import sys, os, getopt, re
     6 import sys, os, getopt, re
     9 
     7 
    10 def clean_comment(match):
     8 def clean_comment(match):
    11     comment = match.group()
     9     comment = match.group()