On Mar 2, 11:44 am, Steve Holden <[EMAIL PROTECTED]> wrote:
> TC wrote:
> > On Mar 2, 11:37 am, Gary Herron <[EMAIL PROTECTED]> wrote:
> >> TC wrote:
> >>> I have a problem. Here's a simplified version of what I'm doing:
> >>> I have functions a() and b() in a module called 'mod'. b() calls a().
TC wrote:
> On Mar 2, 11:37 am, Gary Herron <[EMAIL PROTECTED]> wrote:
>> TC wrote:
>>> I have a problem. Here's a simplified version of what I'm doing:
>>> I have functions a() and b() in a module called 'mod'. b() calls a().
>>> So now, I have this program:
>>> from mod import *
>>> def a():
>>
On Mar 2, 11:37 am, Gary Herron <[EMAIL PROTECTED]> wrote:
> TC wrote:
> > I have a problem. Here's a simplified version of what I'm doing:
>
> > I have functions a() and b() in a module called 'mod'. b() calls a().
>
> > So now, I have this program:
>
> > from mod import *
>
> > def a():
> >
TC wrote:
> I have a problem. Here's a simplified version of what I'm doing:
>
> I have functions a() and b() in a module called 'mod'. b() calls a().
>
> So now, I have this program:
>
> from mod import *
>
> def a():
> blahblah
>
> b()
>
>
> The problem being, b() is calling the a() that's
TC wrote:
> I have a problem. Here's a simplified version of what I'm doing:
>
> I have functions a() and b() in a module called 'mod'. b() calls a().
>
> So now, I have this program:
>
> from mod import *
>
> def a():
> blahblah
>
> b()
>
>
> The problem being, b() is calling the a() that's