from .. import aa, bb as cc: bogus error
Brought to you by:
fabioz
The following works fine:
from .common import retry, NoSuchBucket
but this produces an "Unresolved import: NoSuchBucket_common" error:
from .common import retry, NoSuchBucket as NoSuchBucket_common
Note, however, that the following works:
from .common import NoSuchBucket as NoSuchBucket_common
from .common import retry
Trying in a simple example I haven't been able to reproduce your problem... Can you attach to this issue some sample code with a project where I can reproduce it?
Also, what's the PyDev version you're using?
Sample project is attached. PyDev version is 2.3.0.2011121518.
PyDev Screenshot
Sample project demonstrating the problem