return True, iff sym is the lambda binder
(sym)
| 103 | lambdasym = OMS("lambda", cdFns1) |
| 104 | |
| 105 | def islambda(sym): |
| 106 | "return True, iff sym is the lambda binder" |
| 107 | return lambdasym == sym |
| 108 | |
| 109 | class OMBIND(object): |
| 110 | """hopefully fixed possible problems: reevaluation writes new scope, |