How to entry to a function in python breakpoint in terminal

I try to entry to a function that I called on my code but in terminal, pdb just go through it like this I share with you :

-> def get_context_data(self, *args, **context):
(Pdb) n
--Return--
> d:\rebound\rebound\modules\blog\views.py(135)PostDetail()-><cell at 0x00...1DA4A0: empty>
-> def get_context_data(self, *args, **context):

so which command if I hit, can go entry to called function

Вернуться на верх