When I import and use a function in a python(2.6.5) program, I get an error:
from Localization import MSGR title = Localization.MSGR(\"Logfile from Ctf2Rrl.\")
The import statement of the form:
from foo import bar
Doesn't introduce the module name (foo) from which the imports (bar) are taken into the module namespace.
foo
bar
Only the name bar is defined, not the module from which you imported `bar.