forked from pylint-dev/pylint
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test that a recursion error does not happen any longer. Close pyl…
- Loading branch information
1 parent
6b85128
commit bc4b56e
Showing
2 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
"""Test for https://github.com/PyCQA/pylint/issues/2683""" | ||
# pylint: disable=missing-docstring,too-few-public-methods | ||
|
||
class Cls: | ||
def __init__(self): | ||
self.count = 5 | ||
|
||
def method(self): | ||
records = [] | ||
for _ in []: | ||
records += [] | ||
records = records[:self.count] | ||
records.sort() |
Empty file.