-
-
Notifications
You must be signed in to change notification settings - Fork 312
Comparing changes
Open a pull request
base repository: PyCQA/flake8
base: 7.0.0
head repository: PyCQA/flake8
compare: 7.1.1
- 19 commits
- 13 files changed
- 7 contributors
Commits on Jan 5, 2024
-
update plugins for sphinx-prompt-1.8.0
The sphinx-prompt plugin has renamed its package in 1.8.0 from erraneous `sphinx-prompt` name to `sphinx_prompt`. Adjust the conf accordingly.
Configuration menu - View commit details
-
Copy full SHA for 26d3184 - Browse repository at this point
Copy the full SHA 26d3184View commit details -
Merge pull request #1907 from mgorny/sphinx-prompt-1.8.0
update plugins for sphinx-prompt-1.8.0
Configuration menu - View commit details
-
Copy full SHA for fb9a02a - Browse repository at this point
Copy the full SHA fb9a02aView commit details
Commits on Jan 8, 2024
-
[pre-commit.ci] pre-commit autoupdate
updates: - [github.com/PyCQA/flake8: 6.1.0 → 7.0.0](6.1.0...7.0.0)
Configuration menu - View commit details
-
Copy full SHA for a2b68c8 - Browse repository at this point
Copy the full SHA a2b68c8View commit details -
Merge pull request #1910 from PyCQA/pre-commit-ci-update-config
[pre-commit.ci] pre-commit autoupdate
Configuration menu - View commit details
-
Copy full SHA for 5c52d75 - Browse repository at this point
Copy the full SHA 5c52d75View commit details
Commits on Mar 14, 2024
-
Update documentation regarding entry points
Refer to the PyPA packaging guide Replace references to the deprecated `pkg_resources` docs
Configuration menu - View commit details
-
Copy full SHA for 49f52a8 - Browse repository at this point
Copy the full SHA 49f52a8View commit details
Commits on Mar 17, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 350f254 - Browse repository at this point
Copy the full SHA 350f254View commit details
Commits on Mar 18, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ba0f566 - Browse repository at this point
Copy the full SHA ba0f566View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6659b21 - Browse repository at this point
Copy the full SHA 6659b21View commit details
Commits on Mar 19, 2024
-
Merge pull request #1923 from Viicos/entry-points-docs
Update documentation regarding entry points
Configuration menu - View commit details
-
Copy full SHA for 33e5083 - Browse repository at this point
Copy the full SHA 33e5083View commit details
Commits on Apr 15, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 866ad72 - Browse repository at this point
Copy the full SHA 866ad72View commit details -
Merge pull request #1930 from mzagol/patch-1
Add --extend-exclude to the TOC
Configuration menu - View commit details
-
Copy full SHA for 408d4d6 - Browse repository at this point
Copy the full SHA 408d4d6View commit details
Commits on Jun 15, 2024
-
Configuration menu - View commit details
-
Copy full SHA for defd315 - Browse repository at this point
Copy the full SHA defd315View commit details -
Merge pull request #1939 from PyCQA/new-pycodestyle
latest pycodestyle
Configuration menu - View commit details
-
Copy full SHA for 34c97e0 - Browse repository at this point
Copy the full SHA 34c97e0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 65a38c4 - Browse repository at this point
Copy the full SHA 65a38c4View commit details
Commits on Jul 23, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 10314ad - Browse repository at this point
Copy the full SHA 10314adView commit details -
Merge pull request #1946 from Viicos/patch-1
Fix wording of plugins documentation
Configuration menu - View commit details
-
Copy full SHA for 2a811cc - Browse repository at this point
Copy the full SHA 2a811ccView commit details
Commits on Aug 4, 2024
-
Handle escaped braces in f-strings
To use a curly brace in an f-string, you must escape it. For example: >>> k = 1 >>> f'{{{k}' '{1' Saving this as a script and running the 'tokenize' module highlights something odd around the counting of tokens: ❯ python -m tokenize wow.py 0,0-0,0: ENCODING 'utf-8' 1,0-1,1: NAME 'k' 1,2-1,3: OP '=' 1,4-1,5: NUMBER '1' 1,5-1,6: NEWLINE '\n' 2,0-2,2: FSTRING_START "f'" 2,2-2,3: FSTRING_MIDDLE '{' # <-- here... 2,4-2,5: OP '{' # <-- and here 2,5-2,6: NAME 'k' 2,6-2,7: OP '}' 2,7-2,8: FSTRING_END "'" 2,8-2,9: NEWLINE '\n' 3,0-3,0: ENDMARKER '' The FSTRING_MIDDLE character we have is the escaped/post-parse single curly brace rather than the raw double curly brace, however, while our end index of this token accounts for the parsed form, the start index of the next token does not (put another way, it jumps from 3 -> 4). This triggers some existing, unrelated code that we need to bypass. Do just that. Signed-off-by: Stephen Finucane <stephen@that.guru> Closes: #1948
Configuration menu - View commit details
-
Copy full SHA for bdcd5c2 - Browse repository at this point
Copy the full SHA bdcd5c2View commit details -
Merge pull request #1949 from stephenfin/issue-1948
Handle escaped braces in f-strings
Configuration menu - View commit details
-
Copy full SHA for 939ea3d - Browse repository at this point
Copy the full SHA 939ea3dView commit details -
Configuration menu - View commit details
-
Copy full SHA for cf1542c - Browse repository at this point
Copy the full SHA cf1542cView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 7.0.0...7.1.1