It shouldn't be causing any problems, so you don't really
have to remove it. Unfortunately, it is inserted by the .xml() method, so you can't just manipulate the A() object. Instead, you can do:
{{=XML(A(...).xml().replace(' data-w2p_disable_with="default"', ''))}}
I suppose you could make a class that does that:
class A2(A):
def xml(self):
return super(A2, self).xml().replace(' data-w2p_disable_with="default"', '')
Anyway, we should probably change the behavior of A() so it doesn't add that attribute when not needed.
Anthony