How to move into the ReadPythonNews()
During debugging If we place a breakpoint on news = ReadPythonNews(GetItemCount())
, how to move into ReadPythonNews() and eventually to the last line of ReadPythonNews() which is return news[:count]
Trying to do the part of the tutorial(https://wingware.com/doc/int... displayed below
Try stepping or running to a breakpoint on the last line of this function, which reads return news[:count]. In this context, right-clicking on news under locals in Stack Data allows viewing the value in textual form or as an array.
Comments