BR()+BR()
This commit is contained in:
@@ -1 +1 @@
|
||||
Version 2.00.0 (2012-07-26 17:42:17) dev
|
||||
Version 2.00.0 (2012-07-26 17:53:32) dev
|
||||
|
||||
@@ -474,6 +474,16 @@ class XmlComponent(object):
|
||||
raise NotImplementedError
|
||||
def __mul__(self,n):
|
||||
return CAT(*[self for i in range(n)])
|
||||
def __add__(self,other):
|
||||
if isinstance(self,CAT):
|
||||
components = self.components
|
||||
else:
|
||||
components = [self]
|
||||
if isinstance(other,CAT):
|
||||
components += other.components
|
||||
else:
|
||||
components += [other]
|
||||
return CAT(*components)
|
||||
|
||||
class XML(XmlComponent):
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user