On Wed, 3 Jul 2013, Jed Brown wrote: > Satish Balay <[email protected]> writes: > > > How about: > > > >>>>>>>>> > > - isGNU = staticmethod(config.memoize(isGNU)) > > + > > + import sys > > + if sys.version_info >= (2,5): > > + isGNU = staticmethod(config.memoize(isGNU)) > > + else: > > + isGNU = staticmethod(isGNU) > > <<<<<<<<< > > I still don't understand the actual problem. I reproduced this funny > thing where Python prints 'gcc' and a stack trace without stating an > exception, but I didn't figure out what the exception was or why the > reporting was messed up.
Should we add one of the workarrounds to get the nightlybuilds going for now? Satish
