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

[pyupgrade]: Improve diagnostic range for redundant-open-mode (UP015) #16672

Merged
merged 1 commit into from
Mar 13, 2025

Conversation

MichaReiser
Copy link
Member

Summary

This PR stabilizes the behavior change introduced in #15872

The diagnostic range is now the range of the redundant mode argument where it previously was the range of the entire open call:

Before:

UP015.py:2:1: UP015 [*] Unnecessary mode argument
  |
1 | open("foo", "U")
2 | open("foo", "Ur")
  | ^^^^^^^^^^^^^^^^^ UP015
3 | open("foo", "Ub")
4 | open("foo", "rUb")
  |
  = help: Remove mode argument

Now:

UP015.py:2:13: UP015 [*] Unnecessary mode argument
  |
1 | open("foo", "U")
2 | open("foo", "Ur")
  |             ^^^^ UP015
3 | open("foo", "Ub")
4 | open("foo", "rUb")
  |
  = help: Remove mode argument

This is a breaking change because it may require moving a noqa comment onto a different line, e.g if you have

open(
    "foo",
    "Ur",
) # noqa: UP015

Needs to be rewritten to

open(
    "foo",
    "Ur", # noqa: UP015
)

There have been now new issues or PRs since the new preview behavior was implemented. It first was released as part of Ruff 0.9.5 on the 5th of Feb (a little more than a month ago)

Test Plan

I reviewed the snapshot tests

@MichaReiser MichaReiser added the rule Implementing or modifying a lint rule label Mar 12, 2025
@MichaReiser MichaReiser requested a review from ntBre March 12, 2025 12:34
Copy link

codspeed-hq bot commented Mar 12, 2025

CodSpeed Performance Report

Merging #16672 will degrade performances by 10.59%

Comparing micha/unnecessary-mode-argument-range (097563e) with micha/ruff-0.10 (0ced1cb)

Summary

❌ 1 regressions
✅ 31 untouched benchmarks

⚠️ Please fix the performance issues or acknowledge them on CodSpeed.

Benchmarks breakdown

Benchmark BASE HEAD Change
red_knot_check_file[incremental] 4.9 ms 5.5 ms -10.59%

Copy link
Contributor

ruff-ecosystem results

Linter (stable)

ℹ️ ecosystem check detected linter changes. (+55 -55 violations, +0 -0 fixes in 3 projects; 52 projects unchanged)

binary-husky/gpt_academic (+46 -46 violations, +0 -0 fixes)

- check_proxy.py:161:14: UP015 [*] Unnecessary mode argument
+ check_proxy.py:161:32: UP015 [*] Unnecessary mode argument
- check_proxy.py:191:14: UP015 [*] Unnecessary mode argument
+ check_proxy.py:191:32: UP015 [*] Unnecessary mode argument
- crazy_functions/Conversation_To_File.py:73:14: UP015 [*] Unnecessary mode argument
+ crazy_functions/Conversation_To_File.py:73:30: UP015 [*] Unnecessary mode argument
- crazy_functions/Conversation_To_File.py:87:10: UP015 [*] Unnecessary mode argument
+ crazy_functions/Conversation_To_File.py:87:26: UP015 [*] Unnecessary mode argument
- crazy_functions/Latex_Project_Polish.py:66:14: UP015 [*] Unnecessary mode argument
+ crazy_functions/Latex_Project_Polish.py:66:23: UP015 [*] Unnecessary mode argument
- crazy_functions/Latex_Project_Translate_Legacy.py:46:14: UP015 [*] Unnecessary mode argument
+ crazy_functions/Latex_Project_Translate_Legacy.py:46:23: UP015 [*] Unnecessary mode argument
- crazy_functions/Markdown_Translate.py:61:14: UP015 [*] Unnecessary mode argument
+ crazy_functions/Markdown_Translate.py:61:23: UP015 [*] Unnecessary mode argument
- crazy_functions/SourceCode_Analyse.py:22:14: UP015 [*] Unnecessary mode argument
+ crazy_functions/SourceCode_Analyse.py:22:23: UP015 [*] Unnecessary mode argument
- crazy_functions/SourceCode_Comment.py:33:14: UP015 [*] Unnecessary mode argument
+ crazy_functions/SourceCode_Comment.py:33:23: UP015 [*] Unnecessary mode argument
- crazy_functions/SourceCode_Comment.py:79:14: UP015 [*] Unnecessary mode argument
+ crazy_functions/SourceCode_Comment.py:79:76: UP015 [*] Unnecessary mode argument
- crazy_functions/agent_fns/python_comment_agent.py:207:14: UP015 [*] Unnecessary mode argument
+ crazy_functions/agent_fns/python_comment_agent.py:207:25: UP015 [*] Unnecessary mode argument
- crazy_functions/ast_fns/comment_remove.py:48:10: UP015 [*] Unnecessary mode argument
+ crazy_functions/ast_fns/comment_remove.py:48:28: UP015 [*] Unnecessary mode argument
- crazy_functions/latex_fns/latex_actions.py:239:10: UP015 [*] Unnecessary mode argument
+ crazy_functions/latex_fns/latex_actions.py:239:24: UP015 [*] Unnecessary mode argument
- crazy_functions/latex_fns/latex_actions.py:322:14: UP015 [*] Unnecessary mode argument
+ crazy_functions/latex_fns/latex_actions.py:322:29: UP015 [*] Unnecessary mode argument
- crazy_functions/latex_fns/latex_actions.py:358:18: UP015 [*] Unnecessary mode argument
+ crazy_functions/latex_fns/latex_actions.py:358:33: UP015 [*] Unnecessary mode argument
- crazy_functions/latex_fns/latex_toolbox.py:294:14: UP015 [*] Unnecessary mode argument
+ crazy_functions/latex_fns/latex_toolbox.py:294:25: UP015 [*] Unnecessary mode argument
- crazy_functions/latex_fns/latex_toolbox.py:321:18: UP015 [*] Unnecessary mode argument
+ crazy_functions/latex_fns/latex_toolbox.py:321:29: UP015 [*] Unnecessary mode argument
- crazy_functions/latex_fns/latex_toolbox.py:386:22: UP015 [*] Unnecessary mode argument
+ crazy_functions/latex_fns/latex_toolbox.py:386:32: UP015 [*] Unnecessary mode argument
- crazy_functions/pdf_fns/parse_pdf_via_doc2x.py:250:18: UP015 [*] Unnecessary mode argument
+ crazy_functions/pdf_fns/parse_pdf_via_doc2x.py:250:37: UP015 [*] Unnecessary mode argument
- crazy_functions/pdf_fns/parse_pdf_via_doc2x.py:269:18: UP015 [*] Unnecessary mode argument
+ crazy_functions/pdf_fns/parse_pdf_via_doc2x.py:269:37: UP015 [*] Unnecessary mode argument
- crazy_functions/pdf_fns/parse_pdf_via_doc2x.py:298:18: UP015 [*] Unnecessary mode argument
... 51 additional changes omitted for project

latchbio/latch (+8 -8 violations, +0 -0 fixes)

- src/latch/executions.py:56:14: UP015 [*] Unnecessary mode argument
+ src/latch/executions.py:56:36: UP015 [*] Unnecessary mode argument
- src/latch_cli/exceptions/traceback.py:24:14: UP015 [*] Unnecessary mode argument
+ src/latch_cli/exceptions/traceback.py:24:34: UP015 [*] Unnecessary mode argument
- src/latch_cli/main.py:975:10: UP015 [*] Unnecessary mode argument
+ src/latch_cli/main.py:975:57: UP015 [*] Unnecessary mode argument
- src/latch_cli/services/get_executions.py:377:14: UP015 [*] Unnecessary mode argument
+ src/latch_cli/services/get_executions.py:377:29: UP015 [*] Unnecessary mode argument
- src/latch_cli/services/launch.py:48:10: UP015 [*] Unnecessary mode argument
+ src/latch_cli/services/launch.py:48:28: UP015 [*] Unnecessary mode argument
... 6 additional changes omitted for project

milvus-io/pymilvus (+1 -1 violations, +0 -0 fixes)

- examples/bulk_import/example_bulkwriter.py:273:18: UP015 [*] Unnecessary mode argument
+ examples/bulk_import/example_bulkwriter.py:273:34: UP015 [*] Unnecessary mode argument

Changes by rule (1 rules affected)

code total + violation - violation + fix - fix
UP015 110 55 55 0 0

Linter (preview)

✅ ecosystem check detected no linter changes.

@MichaReiser MichaReiser added this to the v0.10 milestone Mar 12, 2025
@MichaReiser MichaReiser merged commit 396fe3f into micha/ruff-0.10 Mar 13, 2025
20 of 21 checks passed
@MichaReiser MichaReiser deleted the micha/unnecessary-mode-argument-range branch March 13, 2025 07:45
@MichaReiser MichaReiser mentioned this pull request Mar 13, 2025
2 tasks
MichaReiser added a commit that referenced this pull request Mar 13, 2025
…P015`) (#16672)

## Summary

This PR stabilizes the behavior change introduced in
#15872

The diagnostic range is now the range of the redundant `mode` argument
where it previously was the range of the entire `open` call:

Before:

```
UP015.py:2:1: UP015 [*] Unnecessary mode argument
  |
1 | open("foo", "U")
2 | open("foo", "Ur")
  | ^^^^^^^^^^^^^^^^^ UP015
3 | open("foo", "Ub")
4 | open("foo", "rUb")
  |
  = help: Remove mode argument
```


Now:

```
UP015.py:2:13: UP015 [*] Unnecessary mode argument
  |
1 | open("foo", "U")
2 | open("foo", "Ur")
  |             ^^^^ UP015
3 | open("foo", "Ub")
4 | open("foo", "rUb")
  |
  = help: Remove mode argument
```

This is a breaking change because it may require moving a `noqa` comment
onto a different line, e.g if you have

```py
open(
    "foo",
    "Ur",
) # noqa: UP015
```

Needs to be rewritten to 

```py
open(
    "foo",
    "Ur", # noqa: UP015
)
```

There have been now new issues or PRs since the new preview behavior was
implemented. It first was released as part of Ruff 0.9.5 on the 5th of
Feb (a little more than a month ago)

## Test Plan

I reviewed the snapshot tests
MichaReiser added a commit that referenced this pull request Mar 13, 2025
…P015`) (#16672)

## Summary

This PR stabilizes the behavior change introduced in
#15872

The diagnostic range is now the range of the redundant `mode` argument
where it previously was the range of the entire `open` call:

Before:

```
UP015.py:2:1: UP015 [*] Unnecessary mode argument
  |
1 | open("foo", "U")
2 | open("foo", "Ur")
  | ^^^^^^^^^^^^^^^^^ UP015
3 | open("foo", "Ub")
4 | open("foo", "rUb")
  |
  = help: Remove mode argument
```


Now:

```
UP015.py:2:13: UP015 [*] Unnecessary mode argument
  |
1 | open("foo", "U")
2 | open("foo", "Ur")
  |             ^^^^ UP015
3 | open("foo", "Ub")
4 | open("foo", "rUb")
  |
  = help: Remove mode argument
```

This is a breaking change because it may require moving a `noqa` comment
onto a different line, e.g if you have

```py
open(
    "foo",
    "Ur",
) # noqa: UP015
```

Needs to be rewritten to 

```py
open(
    "foo",
    "Ur", # noqa: UP015
)
```

There have been now new issues or PRs since the new preview behavior was
implemented. It first was released as part of Ruff 0.9.5 on the 5th of
Feb (a little more than a month ago)

## Test Plan

I reviewed the snapshot tests
dcreager added a commit that referenced this pull request Mar 14, 2025
* main: (53 commits)
  [syntax-errors] Tuple unpacking in `for` statement iterator clause before Python 3.9 (#16558)
  Ruff v0.10 Release (#16708)
  Add new `noqa` specification to the docs (#16703)
  describe requires-python fallback in docs (#16704)
  [red-knot] handle cycles in MRO/bases resolution (#16693)
  [red-knot] Auto generate statement nodes (#16645)
  [`pylint`] Better inference for `str.strip` (`PLE310`) (#16671)
  [`pylint`] Improve `repeated-equality-comparison` fix to use a `set` when all elements are hashable (`PLR1714`) (#16685)
  [`pylint`/`pep8-naming`] Check `__new__` argument name in `bad-staticmethod-argument` and not `invalid-first-argument-name-for-class-method` (`PLW0211`/`N804`) (#16676)
  [`flake8-pyi`] Stabilize fix for `unused-private-type-var` (`PYI018`) (#16682)
  [`flake8-bandit`] Deprecate `suspicious-xmle-tree-usage` (`S320`) (#16680)
  [`flake8-simplify`] Avoid double negation in fixes (`SIM103`) (#16684)
  [`pyupgrade`]: Improve diagnostic range for `redundant-open-mode` (`UP015`) (#16672)
  Consider all `TYPE_CHECKING` symbols for type-checking blocks (#16669)
  [`pep8-naming`]: Ignore methods decorated with `@typing.override` (`invalid-argument-name`) (#16667)
  Stabilize FURB169 preview behavior (#16666)
  [`pylint`] Detect invalid default value type for `os.environ.get` (`PLW1508`) (#16674)
  [`flake8-pytest-style`] Allow for loops with empty bodies (`PT012`, `PT031`) (#16678)
  [`pyupgrade`]: Deprecate `non-pep604-isinstance` (`UP038`) (#16681)
  [`flake8-type-checking`] Stabilize `runtime-cast-value` (`TC006`) (#16637)
  ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
rule Implementing or modifying a lint rule
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants