Re: from __future__ import absolute_import issue

2009-05-25 Thread LittleGrasshopper
On May 23, 6:39 pm, "Gabriel Genellina" wrote: > En Sat, 23 May 2009 12:32:24 -0300, LittleGrasshopper   > escribió: > > > > > On May 22, 12:42 am, "Gabriel Genellina" > > wrote: > >> En Wed, 20 May 2009 20:18:02 -0300, LittleGrasshopper   > >> escribió: > > >> > It appears that either absolute

Re: from __future__ import absolute_import issue

2009-05-23 Thread Gabriel Genellina
En Sat, 23 May 2009 12:32:24 -0300, LittleGrasshopper escribió: On May 22, 12:42 am, "Gabriel Genellina" wrote: En Wed, 20 May 2009 20:18:02 -0300, LittleGrasshopper   escribió: > It appears that either absolute imports (or my brain) aren't working. > Given a module string.py which is in

Re: from __future__ import absolute_import issue

2009-05-23 Thread LittleGrasshopper
On May 22, 12:42 am, "Gabriel Genellina" wrote: > En Wed, 20 May 2009 20:18:02 -0300, LittleGrasshopper   > escribió: > > > New to the group, this is my first post... > > > It appears that either absolute imports (or my brain) aren't working. > > Given a module string.py which is in the same dire

Re: from __future__ import absolute_import issue

2009-05-22 Thread Gabriel Genellina
En Wed, 20 May 2009 20:18:02 -0300, LittleGrasshopper escribió: New to the group, this is my first post... It appears that either absolute imports (or my brain) aren't working. Given a module string.py which is in the same directory as a.py: #File a.py from __future__ import absolute_import

Re: from __future__ import absolute_import issue

2009-05-20 Thread LittleGrasshopper
On May 20, 4:18 pm, LittleGrasshopper wrote: > New to the group, this is my first post... > > It appears that either absolute imports (or my brain) aren't working. > Given a module string.py which is in the same directory as a.py: > > #File a.py > from __future__ import absolute_import > > import

from __future__ import absolute_import issue

2009-05-20 Thread LittleGrasshopper
New to the group, this is my first post... It appears that either absolute imports (or my brain) aren't working. Given a module string.py which is in the same directory as a.py: #File a.py from __future__ import absolute_import import string print string # Module imported is string.py in curren