I wonder if someone can explain what a @withparser method in python does? if I see @withparser before a method what does it mean?
Thanks in advance
I wonder if someone can explain what a @withparser method in python does? if I see @withparser before a method what does it mean?
Thanks in advance
It's probably a decorator see http://wiki.python.org/moin/PythonDecorators for more infos. It's like a "wrapper" for your function
It's a decorator. More info - http://www.artima.com/weblogs/viewpost.jsp?thread=240808