Merge branch '2.3.x'

This commit is contained in:
David Lord 2023-08-16 13:29:25 -07:00
commit 7d399e80c3
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8
3 changed files with 3 additions and 2 deletions

View file

@ -3,7 +3,7 @@ ci:
autoupdate_schedule: monthly
repos:
- repo: https://github.com/asottile/pyupgrade
rev: v3.7.0
rev: v3.8.0
hooks:
- id: pyupgrade
args: ["--py38-plus"]

View file

@ -231,7 +231,7 @@ responses, you could also pass them through directly.
Error handlers still respect the exception class hierarchy. If you
register handlers for both ``HTTPException`` and ``Exception``, the
``Exception`` handler will not handle ``HTTPException`` subclasses
because it the ``HTTPException`` handler is more specific.
because the ``HTTPException`` handler is more specific.
Unhandled Exceptions

View file

@ -35,6 +35,7 @@ The ``pyproject.toml`` file describes your project and how to build it.
[project]
name = "flaskr"
version = "1.0.0"
description = "The basic blog app built in the Flask tutorial."
dependencies = [
"flask",
]