BR()+BR()

This commit is contained in:
mdipierro
2012-07-26 17:53:35 -05:00
parent 33ed6dd806
commit 8120f75ace
2 changed files with 11 additions and 1 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.00.0 (2012-07-26 17:42:17) dev
Version 2.00.0 (2012-07-26 17:53:32) dev
+10
View File
@@ -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):
"""