Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix markup for subheader to maintaining a consistent look #114

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion exceptions.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Notice that a variable assigned a value of 0 or `None` or a variable which is an

Also note that we use `sys.stdout.flush()` after `print` so that it prints to the screen immediately.

## The with statement {#with}
## The `with` Statement {#with}

Acquiring a resource in the `try` block and subsequently releasing the resource in the `finally` block is a common pattern. Hence, there is also a `with` statement that enables this to be done in a clean manner:

Expand Down