Files
codeql/python/ql/test/query-tests/Imports/general/ImportStarUsed.expected
2020-08-13 10:49:11 +02:00

4 lines
347 B
Plaintext

| imports_test.py:21:1:21:20 | from module import * | Using 'from ... import *' pollutes the namespace |
| imports_test.py:22:1:22:32 | from module_without_all import * | Using 'from ... import *' pollutes the namespace |
| imports_test.py:65:1:65:40 | from module_that_does_not_exist import * | Using 'from ... import *' pollutes the namespace |