Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
iritkatriel committed May 30, 2024
1 parent 7719234 commit 023ad9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion InternalDocs/exception_handling.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ try:
g(0)
except:
res = "fail"

</code>

compiles into pseudo-code like the following:
Expand Down Expand Up @@ -161,7 +162,6 @@ def parse_varint(iterator):
val |= b&63
return val
```

```
def parse_exception_table(code):
iterator = iter(code.co_exceptiontable)
Expand Down

0 comments on commit 023ad9d

Please sign in to comment.