ronaldoussoren/macholib

Unlisted dependency

Closed this issue · 2 comments

Original report by Anonymous.


This package requires "modulegraph" to be installed, otherwise it the import on line 11 of util.py will raise an Exception.

Perhaps add it as an another line in 'require'.

I was able to replicate this behavior by running:
import macholib.MachO

Original comment by Ronald Oussoren (Bitbucket: ronaldoussoren, GitHub: ronaldoussoren).


the import seems to be unnecessary (and "from modulegraph.util import *"???? yuck).

I've removed the import in my tree and will commit and push once I've done some more testing.

Original comment by Anonymous.


That's the reason I hate all of the "from x import *"s -> It makes it far more difficult to determine if something is used, and where it is used.