Attachment 'Get.py'

Download

   1 """
   2     Get macro
   3 
   4     Replaces X with Y from #pragma X Y
   5 
   6 """
   7 
   8 Dependencies = []
   9 def execute(macro, args):
  10     replacement = macro.request.getPragma(args)
  11     if replacement is None:
  12         return '<<Expand(%s)>>' % macro.formatter.text(args)
  13     return macro.formatter.text(replacement)

You are not allowed to attach a file to this page.