Gregory (Grisha) Trubetskoy
grisha at modpython.org
Tue Aug 24 17:07:19 EDT 2004
On Tue, 24 Aug 2004, Tobiah wrote: > >> >> This method is pretty old, now a simpler way to do it is: >> >> mymodulea = apache.import_module("mymodulea") >> mymoduleb = apache.import_module("mymoduleb") >> > > Using this method, is there an equivalent to: > > from mymodule import * None that I can think of. I personally try to avoid * imports because they make the code difficult to read and debug. Grisha
|