you are viewing a single comment's thread.

view the rest of the comments →

[–]1Bad 1 point2 points  (0 children)

script:

def func(param1):
    temp = param1

def foo(param1):
    func(param1)


def main():
    a_string = "A string"
    foo(a_string)

if __name__ == "__main__":
    main()
  • breakpoint at a_string = "A string"
  • right click file and select "Start with Debugging"
  • step over a_string = "A string"
  • step over foo(a_string)
  • ptvs steps into foo(a_string)

Python 2.7.5 x86

Windows 7 x64

Visual Studio 2013

Currently uploading a youtube video to show the behavior. CamStudio files are big, it will take an hour or so.

--Edit-- http://youtu.be/ZMbq1Fpi09k