Changeset b1b9c0d in git for modules/openmathserver/cd.py
- Timestamp:
- Jun 15, 2005, 1:56:48 PM (18 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 9122086d5002d157fdfe81f44ea84f1836d551db
- Parents:
- aeb6d365075d1f830530abf950058c3afdc8f977
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/openmathserver/cd.py
raeb6d3 rb1b9c0d 1 1 from objects import OMSymbol 2 2 from omexceptions import * 3 class OM cd(object):3 class OMCD(object): 4 4 def __init__(self,name, base="http://www.openmath.org/cd"): 5 5 self.name=name … … 13 13 return hash((self.name,self.base)) 14 14 15 class OM cdImplementation(object):15 class OMCDImplementation(object): 16 16 def __init__(self,cd): 17 17 self.cd=cd
Note: See TracChangeset
for help on using the changeset viewer.