Skip to content

Commit

Permalink
Update UP038 docs to note that it results in slower code (#7872)
Browse files Browse the repository at this point in the history
See discussion in #7871. I tried to use language similar to the existing
performance warnings in the `flake8-use-pathlib` docs, e.g.
https://docs.astral.sh/ruff/rules/os-path-abspath/#os-path-abspath-pth100
  • Loading branch information
AlexWaygood authored and konstin committed Oct 11, 2023
1 parent 7ee7593 commit 2373b35
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,13 @@ impl CallKind {
///
/// ## Why is this bad?
/// Since Python 3.10, `isinstance` and `issubclass` can be passed a
/// `|`-separated union of types, which is more concise and consistent
/// `|`-separated union of types, which is consistent
/// with the union operator introduced in [PEP 604].
///
/// Note that this results in slower code. Ignore this rule if the
/// performance of an `isinstance` or `issubclass` check is a
/// concern, e.g., in a hot loop.
///
/// ## Example
/// ```python
/// isinstance(x, (int, float))
Expand Down

0 comments on commit 2373b35

Please sign in to comment.