You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In python 3.11 are implemented a performance for try blocks:
“Zero-cost” exceptions are implemented, eliminating the cost of try statements when no exception is raised. (Contributed by Mark Shannon in bpo-40222.)
On the PR #28 the way that manage the Django 3.0 deprecation imports are not use this performance.
We need to reorder the importation in the try block to use that improve.
The text was updated successfully, but these errors were encountered:
In python 3.11 are implemented a performance for try blocks:
On the PR #28 the way that manage the Django 3.0 deprecation imports are not use this performance.
We need to reorder the importation in the try block to use that improve.
The text was updated successfully, but these errors were encountered: