Changeset c3b172 in git for modules/openmathserver/objects.py
- Timestamp:
- Jun 24, 2005, 3:00:03 PM (18 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 936ad6e7b43877925b9627e6c3c2fed178961312
- Parents:
- 8761f2832a06650bd36ab1c7aeff785ae639c7bd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/openmathserver/objects.py
r8761f2 rc3b172 270 270 value = copy(self.value) 271 271 value.attributes = copy(value.attributes) 272 for a in self.attr:273 a e=context.evaluate(a)274 value.attributes[a e.key] = ae.value272 for attribute in self.attr: 273 attribute_evaluated=context.evaluate(attribute) 274 value.attributes[attribute_evaluated.key] = attribute_evaluated.value 275 275 return value 276 276 XMLtag = "OMATTR"
Note: See TracChangeset
for help on using the changeset viewer.