mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-02 22:55:08 +00:00
11 lines
285 B
Python
11 lines
285 B
Python
import warnings
|
|
|
|
"""
|
|
Should emit:
|
|
B028 - on lines 8 and 9
|
|
"""
|
|
|
|
warnings.warn(DeprecationWarning("test"))
|
|
warnings.warn(DeprecationWarning("test"), source=None)
|
|
warnings.warn(DeprecationWarning("test"), source=None, stacklevel=2)
|
|
warnings.warn(DeprecationWarning("test"), stacklevel=1)
|