rqlrewrite.py
branchstable
changeset 8743 27a83746aebd
parent 8694 d901c36bcfce
child 8748 f5027f8d2478
equal deleted inserted replaced
8742:bd374bd906f3 8743:27a83746aebd
    18 """RQL rewriting utilities : insert rql expression snippets into rql syntax
    18 """RQL rewriting utilities : insert rql expression snippets into rql syntax
    19 tree.
    19 tree.
    20 
    20 
    21 This is used for instance for read security checking in the repository.
    21 This is used for instance for read security checking in the repository.
    22 """
    22 """
    23 from __future__ import with_statement
       
    24 
       
    25 __docformat__ = "restructuredtext en"
    23 __docformat__ = "restructuredtext en"
    26 
    24 
    27 from rql import nodes as n, stmts, TypeResolverException
    25 from rql import nodes as n, stmts, TypeResolverException
    28 from rql.utils import common_parent
    26 from rql.utils import common_parent
    29 
    27