Re: Module Conflicts

2008-04-10 Thread Gabriel Genellina
En Thu, 10 Apr 2008 17:41:29 -0300, Ivan Illarionov <[EMAIL PROTECTED]> escribió: > On Apr 11, 12:31 am, Ivan Illarionov <[EMAIL PROTECTED]> > wrote: >> On Apr 10, 2:33 am, Jose <[EMAIL PROTECTED]> wrote: >> >> > I have a module named math.py in a package with some class >> > definitions. I am t

Re: Module Conflicts

2008-04-10 Thread Steve Holden
Terry Reedy wrote: > "Jose" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > | On Apr 9, 10:36 pm, Benjamin <[EMAIL PROTECTED]> wrote: > | > On Apr 9, 5:33 pm, Jose <[EMAIL PROTECTED]> wrote: > | > > | > > I have a module named math.py in a package with some class > | > > definition

Re: Module Conflicts

2008-04-10 Thread Ivan Illarionov
On Apr 11, 12:31 am, Ivan Illarionov <[EMAIL PROTECTED]> wrote: > On Apr 10, 2:33 am, Jose <[EMAIL PROTECTED]> wrote: > > > I have a module named math.py in a package with some class > > definitions. I am trying to import the standard python math module > > inside of math.py but It seems to be imp

Re: Module Conflicts

2008-04-10 Thread Ivan Illarionov
On Apr 10, 2:33 am, Jose <[EMAIL PROTECTED]> wrote: > I have a module named math.py in a package with some class > definitions. I am trying to import the standard python math module > inside of math.py but It seems to be importing itself. Is there any > way around this problem without renaming my

Re: Module Conflicts

2008-04-10 Thread Terry Reedy
"Jose" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] | On Apr 9, 10:36 pm, Benjamin <[EMAIL PROTECTED]> wrote: | > On Apr 9, 5:33 pm, Jose <[EMAIL PROTECTED]> wrote: | > | > > I have a module named math.py in a package with some class | > > definitions. I am trying to import the st

Re: Module Conflicts

2008-04-10 Thread Jose
On Apr 9, 10:36 pm, Benjamin <[EMAIL PROTECTED]> wrote: > On Apr 9, 5:33 pm, Jose <[EMAIL PROTECTED]> wrote: > > > I have a module named math.py in a package with some class > > definitions. I am trying to import the standard python math module > > inside of math.py but It seems to be importing it

Re: Module Conflicts

2008-04-09 Thread Benjamin
On Apr 9, 5:33 pm, Jose <[EMAIL PROTECTED]> wrote: > I have a module named math.py in a package with some class > definitions. I am trying to import the standard python math module > inside of math.py but It seems to be importing itself. Is there any > way around this problem without renaming my

Module Conflicts

2008-04-09 Thread Jose
I have a module named math.py in a package with some class definitions. I am trying to import the standard python math module inside of math.py but It seems to be importing itself. Is there any way around this problem without renaming my math.py file? -- http://mail.python.org/mailman/listinfo/p