E501: URLs not allowed in first line of assigned multiline strings
Nobody has claimed this yet.
- Dominant language
- Python
- Stars
- 5.2k
- Forks
- 754
- PR merge metrics
- No merged PRs in 30d
Description
New in pycodestyle 2.4, a long-unbroken-string (e.g. URL) in the first line of a multiline string is now an error.
I suspect it is due to https://github.com/PyCQA/pycodestyle/pull/630 , as the most likely candidate due to it touching E501.
v = """http://www.thelongestdomainnameintheworldandthensomeandthensomemoreandmore.com/
http://www.thelongestdomainnameintheworldandthensomeandthensomemoreandmore.com/
"""
$ pycodestyle longlines.py
longlines.py:1:80: E501 line too long (86 > 79 characters)
Oddly, it has to be assigned, i.e. not a conventional docstring.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start at the E501 implementation in pycodestyle's single Python file and reproduce the assigned multiline-string example from the issue. Compare its handling with conventional docstrings, then add or update focused coverage so the expected treatment of long unbroken URLs is captured and the sample command reports the intended result.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- tooling
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 38/100