Re: Determining which things in 'from package import *' are actually used

2008-06-10 Thread Patrick Bouffard
On Jun 10, 3:03 pm, Robert Kern <[EMAIL PROTECTED]> wrote: > Patrick Bouffard wrote: > > I have a fairly large library of Python code, where 'from package import *' > > is > > used rather liberally, and it's not uncommon for more than one of these to >

Determining which things in 'from package import *' are actually used

2008-06-10 Thread Patrick Bouffard
I have a fairly large library of Python code, where 'from package import *' is used rather liberally, and it's not uncommon for more than one of these to appear in any given module. What I'd like to be able to do is to clean my code up a bit and turn each of the 'from package import *' statements i