[Pydev-cvs] org.python.pydev/tests/pysrc/extendable with_path.py, NONE, 1.1 __init__.py, 1.1, 1.2
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2008-05-02 13:41:55
|
Update of /cvsroot/pydev/org.python.pydev/tests/pysrc/extendable In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29973/tests/pysrc/extendable Modified Files: __init__.py Added Files: with_path.py Log Message: __path__ not correctly found on some situations --- NEW FILE: with_path.py --- from extendable.calltips import __path__ print __path__ Index: __init__.py =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/tests/pysrc/extendable/__init__.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** __init__.py 8 Nov 2005 15:03:09 -0000 1.1 --- __init__.py 2 May 2008 13:42:00 -0000 1.2 *************** *** 2,4 **** This package was created so that many files may be added to it (tests can grow it as much as needed,so there should be no dependencies for the root of this package). ! ''' \ No newline at end of file --- 2,5 ---- This package was created so that many files may be added to it (tests can grow it as much as needed,so there should be no dependencies for the root of this package). ! ''' ! print __path__ \ No newline at end of file |