Changeset b1b9c0d in git for modules/openmathserver/binding.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/binding.py
raeb6d3 rb1b9c0d 10 10 return lambdasym==sym 11 11 12 class OM binding(OMObjectBase):12 class OMBinding(OMObjectBase): 13 13 """hopefully fixed possible problems: reevaluation writes new scope, if it isn't 14 14 meant so, references do not work correctly because of scopes 15 solve this by first evaluation to bounded OM binding"""15 solve this by first evaluation to bounded OMBinding""" 16 16 def __init__(self, binder,variables,block): 17 super(OM binding,self).__init__()17 super(OMBinding,self).__init__() 18 18 self.block=block 19 19 self.binder=binder
Note: See TracChangeset
for help on using the changeset viewer.