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

Fix false friends in implicit string concatenation in tests #61228

Conversation

jbdyn
Copy link
Contributor

@jbdyn jbdyn commented Apr 3, 2025

In a PR about how to syntax-highlight Python docstrings, @rmuir and I discovered that instead of implicit concatenation of strings a string plus a docstring have been written.

Since this is a subtle one, I want to briefly show the differences:

The false friend of implicit string concatenation

# var == "foo"

var = "foo"  # <-- no implicit string concatenation
"bar"        # <-- docstring, legal for the bytecode compiler, against PEP 257

can be fixed for example with surrounding brackets:

# var == "foobar"

var = (
    "foo"    # <-- gets implicitly concatenated
    "bar"
)

I felt free to fix the ones I found right away such that the tests pass.

I searched with ripgrep like so:

# in path/to/cloned/pandas
rg -A 1 -B 2 -U ' = f?"[^"]*"\s+f?"[^"]+"\s*' pandas/

I am pretty confident, but not entirely sure, to have catched all cases. 🤔

@jbdyn
Copy link
Contributor Author

jbdyn commented Apr 3, 2025

As a side note:

The tests passed before because they called assert_produces_warning, which in turn calls _assert_caught_expected_warnings, where re.search is used:

if match is not None:
if re.search(match, str(actual_warning.message)):
matched_message = True

The false friends only gave the first part of the full string to match (the rest was discarded as it was detected as docstring), but re.search still gives a positive match in that case.

Maybe it should be re.fullmatch instead? 🤷

@rmuir
Copy link

rmuir commented Apr 3, 2025

I am pretty confident, but not entirely sure, to have catched all cases. 🤔

I rechecked the logfile from the script I ran yesterday: these are the same files and lines with highlight differences, so I think you found them all.

@mroeschke mroeschke added the Testing pandas testing functions or related to the test suite label Apr 3, 2025
@mroeschke mroeschke added this to the 3.0 milestone Apr 3, 2025
@mroeschke mroeschke merged commit af16382 into pandas-dev:main Apr 3, 2025
46 checks passed
@mroeschke
Copy link
Member

Thanks @jbdyn

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Testing pandas testing functions or related to the test suite
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants