[Pydev-cvs] org.python.pydev/tests/pysrc/extendable/relative_with_sub aa.py, NONE, 1.1 bb.py, NONE
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2008-05-10 00:45:25
|
Update of /cvsroot/pydev/org.python.pydev/tests/pysrc/extendable/relative_with_sub In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27110/tests/pysrc/extendable/relative_with_sub Added Files: aa.py bb.py __init__.py Log Message: <strong>Code-completion</strong>: Working for attributes found in a superclass imported with a relative import bug: http://sourceforge.net/tracker/index.php?func=detail&aid=1961017&group_id=85796&atid=577329 --- NEW FILE: aa.py --- class XXX(object): def yyy(self): pass class AA(object): def __init__(self): self.xxx = XXX() --- NEW FILE: __init__.py --- --- NEW FILE: bb.py --- from aa import AA class BB(AA): def __init__(self): self.xxx.y |