Accessing nonexistent methods or properties causes crash on Windows
Describe the bug A clear and concise description of what the bug is.
Entering a certain code solution causes the app to crash with no warning in the lesson 26 practice problem 1.
To Reproduce Steps to reproduce the bug:
- Go to Lesson 26
- Open Practice Problem 1
- In func run() enter the following code
for t in inventory.items():
display_item(t[0], t[1])
- App crashes
You can replace the call to items with any non-existent method call like inventory.get_stuff() and the app will crash.
Expected behavior A clear and concise description of what you expected to happen.
It should just error with dictionary does not have method whatever method.
Information about your device (please complete the following information):
- Operating System: Windows 10 x64
Screenshot

Additional context Add any other context about the problem here.
I should add that I am using the downloadable executable as the browser version works just fine and presents the error "The method get_stuff isn't declared ...."