Jason Jiang wrote:
> Great! It's working now. Thank you so much.
>
> Jason
You're welcome, it's a pleasure! :-D
~Simon
--
http://mail.python.org/mailman/listinfo/python-list
"Jason Jiang" <[EMAIL PROTECTED]> writes:
> Hi,
>
> I have two modules: a.py and b.py. In a.py, I have a function called
> aFunc(). I'm calling aFunc() from b.py (of course I import module a first).
> The question is how to directly set a breakpoint in aFunc().
>
> The way I'm doing now is to set
Great! It's working now. Thank you so much.
Jason
"Simon Forman" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Jason Jiang wrote:
>> "Simon Forman" <[EMAIL PROTECTED]> wrote in message
>> news:[EMAIL PROTECTED]
>> > Jason Jiang wrote:
>> >> Hi,
>> >>
>> >> I have two modules: a.p
Jason Jiang wrote:
> "Simon Forman" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> > Jason Jiang wrote:
> >> Hi,
> >>
> >> I have two modules: a.py and b.py. In a.py, I have a function called
> >> aFunc(). I'm calling aFunc() from b.py (of course I import module a
> >> first).
> >>
I'm using Python pdb module pdb.py.
"Simon Forman" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Jason Jiang wrote:
>> Hi,
>>
>> I have two modules: a.py and b.py. In a.py, I have a function called
>> aFunc(). I'm calling aFunc() from b.py (of course I import module a
>> first).
Jason Jiang wrote:
> Hi,
>
> I have two modules: a.py and b.py. In a.py, I have a function called
> aFunc(). I'm calling aFunc() from b.py (of course I import module a first).
> The question is how to directly set a breakpoint in aFunc().
>
> The way I'm doing now is to set a breakpoint in b.py at
Hi,
I have two modules: a.py and b.py. In a.py, I have a function called
aFunc(). I'm calling aFunc() from b.py (of course I import module a first).
The question is how to directly set a breakpoint in aFunc().
The way I'm doing now is to set a breakpoint in b.py at the line to call
aFunc(), 'c' t