Changeset 9122086 in git
- Timestamp:
- Jun 15, 2005, 1:56:49 PM (18 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- e96c8d9e582eb49287c771aa36dd19744761bfa8
- Parents:
- b1b9c0df208edd2e29beb3a44d02c10061ac160b
- Location:
- modules/openmathserver
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/openmathserver/objects.py
rb1b9c0d r9122086 231 231 print context.evaluate(x) 232 232 print context.evaluate(y) 233 firstArg=OM binding(lambdasym,[OMVar("x"), OMVar("y")], OMVar("x"))233 firstArg=OMBinding(lambdasym,[OMVar("x"), OMVar("y")], OMVar("x")) 234 234 #print context.evaluate(firstArg) 235 235 application=OMApply(firstArg, [x,y]) -
modules/openmathserver/omxmlreader.py
rb1b9c0d r9122086 73 73 if (node.nodeName=="OMBIND"): 74 74 children=[self.buildFromNode(c) for c in node.childNodes] 75 erg= OM binding(children[0],children[1:-1],children[-1])75 erg= OMBinding(children[0],children[1:-1],children[-1]) 76 76 if (node.nodeName=="OMF"): 77 77 if (node.hasAttribute("dec")):
Note: See TracChangeset
for help on using the changeset viewer.