Message1270

Author nobody
Recipients
Date 2006-11-08.17:55:05
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
With a .py script like this:

__all__ = [
'mod_one',
'module_two',
'module_three'
]
import mod_one
import module_two
import module_three

only first two modules get loaded.

With BSFManager.exec the third gives an exception on 
AccessController.doPrivileged.

If i use import * then no more exceptions but only 
first two modules get loaded.

I made some tests and discovered that if a module has 
a name longer than 11 chars can't be loaded.
History
Date User Action Args
2008-02-20 17:17:35adminlinkissue1592815 messages
2008-02-20 17:17:35admincreate