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

Allow trailing commas for files setting in mypy.ini and setup.ini #18621

Merged
merged 1 commit into from
Feb 6, 2025

Conversation

sobolevn
Copy link
Member

@sobolevn sobolevn commented Feb 6, 2025

Now

files =
  a.py,
  b.py

and

files =
  a.py,
  b.py,

will be the same thing.

Previously, adding a traling comma would add '' to paths, which resulted in a strange error like:

  a.py: error: Duplicate module named "a" (also at "a.py") (diff)
  a.py: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#mapping-file-paths-to-modules for more info (diff)
  a.py: note: Common resolutions include: a) using `--exclude` to avoid checking one of them, b) adding `__init__.py` somewhere, c) using `--explicit-package-bases` or adjusting MYPYPATH (diff)

Refs #14240
Refs python/cpython#129708

Copy link
Contributor

github-actions bot commented Feb 6, 2025

Diff from mypy_primer, showing the effect of this PR on open source code:

imagehash (https://github.com/JohannesBuchner/imagehash): 1.56x faster (39.4s -> 25.2s in a single noisy sample)

@@ -126,7 +126,7 @@ def split_and_match_files(paths: str) -> list[str]:
Returns a list of file paths
"""

return split_and_match_files_list(paths.split(","))
return split_and_match_files_list(split_commas(paths))
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe do the same for pyproject.toml? (Line 202 uses try_split and is equally prone to trailing comma)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tried this test:

[case testCmdlineCfgFilesTrailingComma]
# cmd: mypy
[file pyproject.toml]
\[tool.mypy]
files = [
  "a.py",
  "b.py",
]
[file a.py]
x: str = 'x'  # ok
[file b.py]
y: int = 'y'  # E: Incompatible types in assignment (expression has type "str", variable has type "int")
[file c.py]
# This should not trigger any errors, because it is not included:
z: int = 'z'
[out]

and it passed on main. So, I don't think that this change is required.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nah, not exactly. This is perverse style, but...


[case testCmdlineCfgFilesTrailingComma]
# cmd: mypy
[file pyproject.toml]
\[tool.mypy]
files = """
  a.py,
  b.py,
"""
[file a.py]
x: str = 'x'  # ok
[file b.py]
y: int = 'y'  # E: Incompatible types in assignment (expression has type "str", variable has type "int")
[file c.py]
# This should not trigger any errors, because it is not included:
z: int = 'z'
[out]

(remove the trailing comma to make it pass)

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When lists are toml lists, commas are handled much earlier by the parser itself. But mypy seems to support ini-style comma-delimited lists as single strings as well. I don't know how useful that is, but let's keep commas treatment consistent?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok, got it!

Copy link
Member Author

@sobolevn sobolevn Feb 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, here's the thing. pyproject.toml uses try_split function which is regex based.
Looks like there are multiple settings that are affected.

Let's do it this way: since I cannot really change just one handler, I will merge this PR and create the next one with many tests based on try_split.

@sobolevn sobolevn merged commit 5ee02cd into master Feb 6, 2025
18 checks passed
@sobolevn sobolevn deleted the allow-files-trailing-comma branch February 6, 2025 19:51
sobolevn added a commit that referenced this pull request Feb 7, 2025
x612skm pushed a commit to x612skm/mypy-dev that referenced this pull request Feb 24, 2025
…i` (python#18621)

Now 

```ini
files =
  a.py,
  b.py
```

and 

```ini
files =
  a.py,
  b.py,
```

will be the same thing.

Previously, adding a traling comma would add `''` to `paths`, which
resulted in a strange error like:

```
  a.py: error: Duplicate module named "a" (also at "a.py") (diff)
  a.py: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#mapping-file-paths-to-modules for more info (diff)
  a.py: note: Common resolutions include: a) using `--exclude` to avoid checking one of them, b) adding `__init__.py` somewhere, c) using `--explicit-package-bases` or adjusting MYPYPATH (diff)
```

Refs python#14240
Refs python/cpython#129708
x612skm pushed a commit to x612skm/mypy-dev that referenced this pull request Feb 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants