index
:
delta/python-packages/pyflakes.git
0.9
3.5
allow-failure-in-nightly-python
badge
badge-1
breakpoint
class-without-self
future_proof
main
master
master-only
matmul
myint-absolute-link
myint-simplify-else
nightly
nonast
partially_quoted_annotations
pep8
py3
pypy3
python37
remove-obsolete-from-travis
shebang
simplify_literal_check
travis-on-nightly
typo
github.com: pyflakes/pyflakes.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
pyflakes
/
test
/
test_other.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
produce an error when a definition shadows an unused assignment (#761)
Anthony Sottile
2023-01-12
1
-0
/
+6
*
pyflakes: python3.8+ (#752)
Anthony Sottile
2022-11-27
1
-46
/
+0
*
fix crash on augmented-assign to print builtin (#745)
Anthony Sottile
2022-11-24
1
-0
/
+4
*
burn the bridges with python 2.x (#707)
Anthony Sottile
2022-06-12
1
-70
/
+0
*
add tests for python3.11-specific syntax (#694)
Anthony Sottile
2022-05-30
1
-0
/
+9
*
assignment expression in comprehension should target outer scope (#698)
Yann Sartori
2022-05-30
1
-0
/
+17
*
remove with_statement future imports (#663)
Danny Sepler
2021-11-21
1
-16
/
+0
*
Add a check for if statement conditions which are non-empty tuples (#512)
Peter Law
2020-03-17
1
-0
/
+23
*
Allow continue inside finally in 3.8+ (#476)
Batuhan Taşkaya
2019-11-03
1
-0
/
+3
*
Add support for PEP 572 assignment expressions (#457)
Anthony Sottile
2019-08-12
1
-0
/
+9
*
String formatting linting (#443)
Anthony Sottile
2019-07-30
1
-0
/
+153
*
Move type annotations tests to their own class
Anthony Sottile
2019-01-05
1
-253
/
+0
*
Parse PEP 484 type comments
Anthony Sottile
2019-01-04
1
-0
/
+66
*
Add support for PEP 563 (#356) (#374)
Jörn Heissler
2018-12-22
1
-0
/
+18
*
Exempt typing.overload from duplicate detection
Anthony Sottile
2018-11-01
1
-0
/
+29
*
Consider AsyncFor the same as For in variable contexts (#380)
Anthony Sottile
2018-10-30
1
-0
/
+8
*
checker.py: Check for invalid print syntax
MacBox7
2018-08-11
1
-0
/
+50
*
Handle subtrees as input to checker
MacBox7
2018-07-19
1
-0
/
+31
*
Don't warn about unused `_` magic var
Kurtis Rader
2018-07-16
1
-0
/
+10
*
Drop support for EOL Python <2.7 and 3.2-3.3 (#322)
Hugo
2018-03-25
1
-13
/
+6
*
Warn on raise NotImplemented(...)
Scott Sanderson
2018-02-18
1
-0
/
+17
*
Ignore underscore redefinition (#73)
eight
2017-12-08
1
-0
/
+19
*
Handle string literal annotations (#313)
Jimmy Jia
2017-11-25
1
-0
/
+74
*
Add check for unused exception binding in except: block (#293)
Jon Dufresne
2017-10-21
1
-0
/
+16
*
Process function scope variable annotations (#88)
Jakub Stasiak
2017-01-22
1
-1
/
+6
*
Enable support for PEP 526 annotated assignments (#84)
Łukasz Langa
2017-01-06
1
-0
/
+61
*
Fix format string checking (#80)
Jared Garst
2016-09-08
1
-0
/
+8
*
Fix typos (#77)
Jakub Wilk
2016-07-27
1
-2
/
+2
*
Fix "continue" and "break" checks ignoring py3.5's "async for" loop (#71)
Yann Kaiser
2016-07-04
1
-0
/
+57
*
Handle matrix-multiplication operator ("@")
matmul
Steven Myint
2015-12-21
1
-0
/
+7
*
Report assert using tuple
John Vandenberg
2015-11-24
1
-0
/
+34
*
Check for non-ast SyntaxErrors
nonast
Aaron Meurer
2015-11-13
1
-4
/
+658
*
PEP 498 f-strings support
John Vandenberg
2015-11-08
1
-0
/
+8
*
Support Python 3.5 async/await statements for Pyflakes.
Igor Davydenko
2015-08-26
1
-0
/
+52
*
Roll back changes, add comment, and skip the test.
ryneeverett
2015-08-14
1
-1
/
+2
*
Test that used variable in loop is considered used
ryneeverett
2015-08-14
1
-0
/
+12
*
Don't mark shadowing variable as 'used'.
ryneeverett
2015-08-13
1
-1
/
+12
*
Fix TypeError bug.
ryneeverett
2015-06-16
1
-0
/
+9
*
Properly support list comprehensions in Python 3
Steven Myint
2015-03-20
1
-0
/
+4
*
Add an error for return outside of function.
Adi Roiban
2015-02-14
1
-0
/
+9
*
Avoid crash on "return 2"
Steven Myint
2014-04-26
1
-0
/
+4
*
Report undefined name for literal tuple unpacking; fixes lp:879941
Florent Xicluna
2014-03-30
1
-1
/
+23
*
Actually this test passes
Florent Xicluna
2014-03-29
1
-2
/
+1
*
Remove dependency on unittest2 completely
Florent Xicluna
2013-07-02
1
-4
/
+3
*
Remove dependency on unittest2 for the tests
Florent Xicluna
2013-06-19
1
-1
/
+1
*
Minor style cleanup
Florent Xicluna
2013-04-21
1
-6
/
+13
*
Do not crash when handling dotted exception types; with tests.
Florent Xicluna
2013-04-15
1
-1
/
+14
*
Support special locals like __tracebackhide__ for py.test.
Florent Xicluna
2013-04-04
1
-0
/
+10
|
\
|
*
Support special locals like __tracebackhide__ for py.test.
Florent Xicluna
2013-03-30
1
-0
/
+9
*
|
Add docstrings to some modules, copyright moved to LICENSE and setup.py.
Florent Xicluna
2013-03-31
1
-3
/
+0
[next]