Alex Martelli wrote: > I think a better "works now" solution might be: > > def conj(x): > try: return x.conjugate() > except AttributeError: return x > map(conj, arr) > Thanks. I knew there had to be a better way.