En Thu, 21 Aug 2008 13:04:51 -0300, Daniel <[EMAIL PROTECTED]> escribi�:

I have a project that I've decided to split into packages in order to
organize my code better.  So what I have looks something like this

src
  -module1
    -mod1_file.py
  -module2
    -mod2_file.py

Everytime I run mod2_file.py I need to import mod1_file.py.  Right now
I'm using an ugly little thing to do my import (see below).  Isn't
there some python mechanism to handle packages?

Sure - Python *has* packages, you don't have to "simulate" them.
Read http://docs.python.org/tut/node8.html#SECTION008400000000000000000

--
Gabriel Genellina

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to