summaryrefslogtreecommitdiff
path: root/tests/functional/b/bad_reversed_sequence.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove Python 2 code from the tests & refactor (#7320)Mark Byrne2022-08-181-5/+5
| | | | | | | - Refactor Classes which inherit from `object`. - Remove `import print_function from __future__`. - Remove assignments to `__revision__` from the functional test module when it is never used throughout the module. Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* Move no-self-use to optional extension (#6448)Marc Mueller2022-05-051-1/+1
| | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* From Python 3.8 onwards classes inheriting from dict are reversible (#5169)Tim Martin2021-10-171-4/+0
| | | | | | | | | | | * From Python 3.8 onwards classes inheriting from dict are reversible This generalises an earlier change to the bad-reversed-sequence checker in Python 3.8 onwards: dicts were already being treated as reversible, but so should any class inheriting from dict. Fixes #4981 Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* Spelling and grammar fixesVille Skyttä2021-09-171-1/+1
|
* Remove the python3 porting mode from the codebasePierre Sassoulas2021-09-011-1/+1
| | | | | | It's possible to use the python3 porting checker from an older pylint version. But it's not evolving anymore and was costing resource to maintain.
* Add version-specific functional tests for `bad_reversed_sequence`ethan-leba2020-11-301-1/+0
|
* ``import-outside-toplevel`` is emitted for ``ImportFrom`` nodes as well.Claudiu Popa2019-10-091-6/+2
| | | | Close #3175
* [functional tests] Rename example_functional_tests.py => ↵Pierre Sassoulas2019-09-101-0/+84
e/example_functional_tests.py Permit to navigate in the functional tests easier.