[Pythonmac-SIG] py2app testing modulegraph

2010-07-23 Thread engelbert gruber
hi i am trying to setup a modulegraph test that triggers missing import for ifilter, imap some hurdles * i am not at a mac currently. a good thing, this results in cross platform tests * altgraph must be installed because pkg_resource require does not find it otherwise this is not so good

Re: [Pythonmac-SIG] py2app testing modulegraph

2010-07-23 Thread Ronald Oussoren
On 23 Jul, 2010, at 0:21, Christopher Barker wrote: > Ronald Oussoren wrote: >>> Ronald Oussoren wrote: modulegraph should be platform independent >>> indeed -- it's used by bbfreeze: >>> >>> http://pypi.python.org/pypi/bbfreeze/0.96.5 >>> >>> Though I think he's forked it. But it might be

Re: [Pythonmac-SIG] py2app testing modulegraph

2010-07-22 Thread Christopher Barker
Ronald Oussoren wrote: Ronald Oussoren wrote: modulegraph should be platform independent indeed -- it's used by bbfreeze: http://pypi.python.org/pypi/bbfreeze/0.96.5 Though I think he's forked it. But it might be good to get in touch and see if he's got patches to integrate. I really don't

Re: [Pythonmac-SIG] py2app testing modulegraph

2010-07-22 Thread Ronald Oussoren
On 22 Jul, 2010, at 15:11, Ronald Oussoren wrote: > > On 21 Jul, 2010, at 18:54, Christopher Barker wrote: > >> Ronald Oussoren wrote: >>> modulegraph should be platform independent >> >> indeed -- it's used by bbfreeze: >> >> http://pypi.python.org/pypi/bbfreeze/0.96.5 >> >> Though I think

Re: [Pythonmac-SIG] py2app testing modulegraph

2010-07-22 Thread Ronald Oussoren
On 21 Jul, 2010, at 18:54, Christopher Barker wrote: > Ronald Oussoren wrote: >> modulegraph should be platform independent > > indeed -- it's used by bbfreeze: > > http://pypi.python.org/pypi/bbfreeze/0.96.5 > > Though I think he's forked it. But it might be good to get in touch and see > if

Re: [Pythonmac-SIG] py2app testing modulegraph

2010-07-21 Thread Christopher Barker
Ronald Oussoren wrote: modulegraph should be platform independent indeed -- it's used by bbfreeze: http://pypi.python.org/pypi/bbfreeze/0.96.5 Though I think he's forked it. But it might be good to get in touch and see if he's got patches to integrate. -Chris -- Christopher Barker, Ph.D.

Re: [Pythonmac-SIG] py2app testing modulegraph

2010-07-21 Thread Ronald Oussoren
On 21 Jul, 2010, at 9:24, engelbert gruber wrote: > hi > > modulegraph.py os_listdir hangs on none existing dirs (strange) :: I'll look into this at the europython sprints. > > is there a unittest function to verify endless loops ? No. Sadly enough py2app and its dependencies hardly have tes

[Pythonmac-SIG] py2app testing modulegraph

2010-07-21 Thread engelbert gruber
hi modulegraph.py os_listdir hangs on none existing dirs (strange) :: def os_listdir(path): """ os.listdir with support for zipfiles """ try: return os.listdir(path) except os.error: info = sys.exc_info() rest = '' while not os.path.exists(pa