I have
class A:
def __init__(self, objFun, x0):
#(I want to have self.primal.f = objFun)
#both
self.primal.f = objFun
#and
self.primal = None
self.primal.f = objFunyields error what should I do? Thx -- http://mail.python.org/mailman/listinfo/python-list
