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
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
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
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
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
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.
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
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