Changeset d4cf20 in git
- Timestamp:
- Jun 24, 2005, 11:19:52 AM (18 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- ee17bf95ed1666f2faa03fb99a49b4518f2e3473
- Parents:
- e93f7b07b36da664af34ef23c28fc8d9f21b67ce
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/openmathserver/arith1.py
re93f7b rd4cf20 11 11 def plusfunc(context, *args): 12 12 "tries, convert to generic and adding" 13 #print "plusfunc", args14 13 args = [context.toGeneric(omobj) for omobj in args] 15 14 if len(args) == 0: … … 21 20 return erg 22 21 implementation.implement("plus", plusfunc) 23 #print implementation[sym]24 #print plussym25 #print sym==plussym26 #print implementation[plussym]27 #plusimpl=ImplementedOMSymbol(plussym,plusfunc)28 #implementation[plussym]=plusimpl29 #print "Laenge", (len(implementation.implementations))30 #assert OMSymbol("plus",content)==OMSymbol("plus",content)
Note: See TracChangeset
for help on using the changeset viewer.