/
Interpreting Exceptions UW CSE Interpreting Exceptions UW CSE

Interpreting Exceptions UW CSE - PowerPoint Presentation

olivia-moreira
olivia-moreira . @olivia-moreira
Follow
356 views
Uploaded On 2019-06-19

Interpreting Exceptions UW CSE - PPT Presentation

160 Spring 2015 download examples from the calendar 1 There are two ways of constructing a software design One way is to make it so simple that there are obviously no deficiencies and the other way is to make it ID: 759170

Share:

Link:

Embed:

Download Presentation from below link

Download Presentation The PPT/PDF document "Interpreting Exceptions UW CSE" is the property of its rightful owner. Permission is granted to download and print the materials on this web site for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.


Presentation Transcript

Slide1

Interpreting Exceptions

UW CSE 160Spring 2015

download examples from the calendar

1

Slide2

There are two ways of constructing a software design: One way is to make it

so simple that there are obviously no deficiencies, and the other way is to make it so complicated that there are no obvious deficiencies.

Hoare

2

Slide3

def friends(graph, user): """Returns a set of the friends of the given user, in the given graph.""" return set(graph.neighbors(user))def friends_of_friends(graph, user): """Returns a set of friends of friends of the given user, in the given graph. The result does not include the user nor their friends """ fof = set() f = friends(graph, user) for fren in f: friends = friends(graph, user) fof = fof | friend g = (fof – f) g.remove(user) return g

3

Slide4

Traceback (most recent call last):File "nx_error.py", line 41, in <module> print friends_of_friends(rj, myval)File "nx_error.py", line 30, in friends_of_friends f = friends(graph, user)File "nx_error.py", line 25, in friends return set(graph.neighbors(user))# File "/Library/Frameworks/…/graph.py", line 978, in neighbors return list(self.adj[n])

myval=["Mercutio"]print friends_of_friends(rj, myval)

see nx_error.py

4

Slide5

Traceback (most recent call last):File "nx_error.py", line 41, in <module> print friends_of_friends(rj, myval)File "nx_error.py", line 30, in friends_of_friends f = friends(graph, user)File "nx_error.py", line 25, in friends return set(graph.neighbors(user))# File "/Library/Frameworks/…/graph.py", line 978, in neighbors return list(self.adj[n])

Traceback: a description of the

stack

.

Each

stack frame in the stack is described by a filenameline numberfunction nameFurther, the line itself is printed for convenience

see nx_error.py

5

Slide6

Traceback (most recent call last):File "nx_error.py", line 41, in <module> print friends_of_friends(rj, myval)File "nx_error.py", line 30, in friends_of_friends f = friends(graph, user)File "nx_error.py", line 25, in friends return set(graph.neighbors(user))# File "/Library/Frameworks/…/graph.py", line 978, in neighbors return list(self.adj[n])

How many stack frames are referenced?Where did the error actually get noticed?Where was the original cause of the problem?

myval=["Mercutio"]print friends_of_friends(rj, myval)

see nx_error.py

6

Slide7

# assume rj was defined previously and correctlydef friends(graph, user): """Returns the set of friends of user in graph""" return set(graph.neighbors(user))friends = friends(rj, "Mercutio")print friendsfriends = friends(rj, "Juliet")print friends

What will be the output?

see name_conflict.py

7

Slide8

def friends_of_friends(graph, user): """Returns a set of friends of friends of the given user, in the given graph. The result does not include the user nor their friends """ fof = set() f = friends(graph, user) for fren in f: friends = friends(graph, user) # name conflict fof = fof | friend g = (fof – f) g.remove(user) return g

Same root cause problem, very different message

see name_conflict2.py

8

Slide9

def friends(graph, user): """Returns the set of friends of user in graph""" return set(graph.neighbors(user))friends = friends(rj, "Mercutio") # name conflict print friendsdef friends_of_friends(graph, user): """Returns a set of friends of friends of the given user, in the given graph. The result does not include the user nor their friends """ fof = set() f = friends(graph, user) for fren in f: friend = friends(graph, user) fof = fof | friend g = (fof – f) g.remove(user) return gprint friends_of_friends(rj, “Mecutio”)

see name_conflict3.py

9

Slide10

# Two errors -- which is thrown first?print x # undefined variable print "x" # bad indentation

Python performs a syntax check of your code before it executes anything.

see syntax_error.py

10

Slide11

def friends_of_friends(graph, user): """Returns a set of friends of friends of the given user, in the given graph. The result does not include the user nor their friends """ fof = set() f = friends(graph, user) for fren in f: friend = friends(graph, user) fof = fof | friend fof = fof.remove(user) g = (fof - f) return g

Traceback (most recent call last): File "none_error.py", line 21, in <module> friends_of_friends(g, "Mercutio") File "none_error.py", line 13, in friends_of_friends fof = fof | friendTypeError: unsupported operand type(s) for |: 'NoneType' and 'set'

see none_error.py

11

Slide12

def friends_of_friends(graph, user): """Returns a set of friends of friends of the given user, in the given graph. The result does not include the user nor their friends """ fof = set() f = friends(graph, user) for fren in f: friend = friends(graph, user) fof = fof | friend g = (fof - f) – user return g

Traceback (most recent call last): File "type_error.py", line 37, in <module> friends_of_friends(rj, "Mercutio") File "type_error.py", line 34, in friends_of_friends g = (fof - f) - userTypeError: unsupported operand type(s) for -: 'set' and 'str'

see type_error.py

12

Slide13

def friends_of_friends(graph, user): """Returns a set of friends of friends of the given user, in the given graph. The result does not include the user nor their friends """ fof = set() f = friends(graph, user) for fren in f: friend = friends(graph, user) fof = fof | friend f.add(set([user])) g = (fof - f) return g

Traceback (most recent call last): File "unhashable_type.py", line 21, in <module> friends_of_friends(g, "Mercutio") File "unhashable_type.py", line 14, in friends_of_friends f.add([user])TypeError: unhashable type: ’set'

see unhashable_type.py

13