(self)
| 74 | # BYTES1005 disabled: bytes() encoding is not a security sink on its own. |
| 75 | assert not_fires("d=request.GET.get('data'); bytes(d,'utf-8')", "BYTES1005") |
| 76 | def test_constant_safe(self): |
| 77 | assert not_fires("bytes('hello','utf-8')", "BYTES1005") |
| 78 | |
| 79 | # --- BYTEARRAY1008 --- |
| 80 | class TestBytearray1008: |
nothing calls this directly
no test coverage detected