-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add failing test case for missing module
- Loading branch information
1 parent
003e563
commit e80ed4c
Showing
2 changed files
with
2 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 |
---|---|---|
@@ -1,3 1,4 @@ | ||
# pylint: disable=missing-docstring,unused-wildcard-import,redefined-builtin | ||
from csv import * | ||
from abc import * # [wildcard-import] | ||
from UNINFERABLE import * # [wildcard-import] |
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 |
---|---|---|
@@ -1 1,2 @@ | ||
wildcard-import:3::Wildcard import abc:HIGH | ||
wildcard-import:4::Wildcard import UNINFERABLE:HIGH |