| 160 | |
| 161 | # --- SET1047 --- |
| 162 | class TestSet1047: |
| 163 | def test_tainted_silent_disabled(self): |
| 164 | # SET1047 disabled: set() deduplication causes FPs from deep inter-proc taint. |
| 165 | assert not_fires("items=request.GET.getlist('i'); set(items)", "SET1047") |
| 166 | def test_constant_safe(self): |
| 167 | assert not_fires("set([1,2,3])", "SET1047") |
nothing calls this directly
no outgoing calls
no test coverage detected