id	summary	reporter	owner	description	type	status	priority	component	severity	resolution	keywords	cc
148	relative imports required for inter-package imports	anonymous	xi	"I ran into a case where the line
{{{
#!python
from parser import *
}}}
in '''loader.py''' referenced an external module.
Such imports really should be relative:
{{{
#!python
from .parser import *
}}}
This is especially important in view of [PEP328 http://www.python.org/dev/peps/pep-0328/] since absolute imports are being phased out.
"	defect	new	normal	pyyaml	normal			
