ruff/crates/ruff_linter/resources/test/fixtures/flake8_bandit/S102.py
InSync 4f37fdeff2
[flake8-bandit] Check for builtins instead of builtin (S102, PTH123) (#15443)
## Summary

Resolves #15442.

## Test Plan

`cargo nextest run` and `cargo insta test`.
2025-01-12 19:45:31 -05:00

15 lines
232 B
Python

def fn():
# Error
exec('x = 2')
exec('y = 3')
## https://github.com/astral-sh/ruff/issues/15442
def _():
from builtins import exec
exec('') # Error
def _():
from builtin import exec
exec('') # No error