Changeset 9122086 in git


Ignore:
Timestamp:
Jun 15, 2005, 1:56:49 PM (18 years ago)
Author:
Michael Brickenstein <bricken@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
e96c8d9e582eb49287c771aa36dd19744761bfa8
Parents:
b1b9c0df208edd2e29beb3a44d02c10061ac160b
Message:
*bricken: refactoring


git-svn-id: file:///usr/local/Singular/svn/trunk@8374 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
modules/openmathserver
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • modules/openmathserver/objects.py

    rb1b9c0d r9122086  
    231231    print context.evaluate(x)
    232232    print context.evaluate(y)
    233     firstArg=OMbinding(lambdasym,[OMVar("x"), OMVar("y")], OMVar("x"))
     233    firstArg=OMBinding(lambdasym,[OMVar("x"), OMVar("y")], OMVar("x"))
    234234    #print context.evaluate(firstArg)
    235235    application=OMApply(firstArg, [x,y])
  • modules/openmathserver/omxmlreader.py

    rb1b9c0d r9122086  
    7373        if (node.nodeName=="OMBIND"):
    7474            children=[self.buildFromNode(c) for c in node.childNodes]
    75             erg= OMbinding(children[0],children[1:-1],children[-1])
     75            erg= OMBinding(children[0],children[1:-1],children[-1])
    7676        if (node.nodeName=="OMF"):
    7777            if (node.hasAttribute("dec")):
Note: See TracChangeset for help on using the changeset viewer.