> In other words, should I first attempt to
> __import__('vor.'+modname) in runJob() ?

see the python reference about how to use __import__ over hierarchical 
paths, or use this instead

def import_fullname( name):
    m = __import__( name)
    subnames = name.split('.')[1:]
    for k in subnames: m = getattr(m,k)
    return m

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to