mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
82 lines
2.8 KiB
Python
82 lines
2.8 KiB
Python
import warnings
|
|
import typing_extensions
|
|
from typing_extensions import deprecated
|
|
|
|
def f1(x: str = "50 character stringggggggggggggggggggggggggggggggg") -> None: ... # OK
|
|
def f2(
|
|
x: str = "51 character stringgggggggggggggggggggggggggggggggg", # Error: PYI053
|
|
) -> None: ...
|
|
def f3(
|
|
x: str = "50 character stringgggggggggggggggggggggggggggggg\U0001f600", # OK
|
|
) -> None: ...
|
|
def f4(
|
|
x: str = "51 character stringggggggggggggggggggggggggggggggg\U0001f600", # Error: PYI053
|
|
) -> None: ...
|
|
def f5(
|
|
x: bytes = b"50 character byte stringgggggggggggggggggggggggggg", # OK
|
|
) -> None: ...
|
|
def f6(
|
|
x: bytes = b"51 character byte stringgggggggggggggggggggggggggg", # Error: PYI053
|
|
) -> None: ...
|
|
def f7(
|
|
x: bytes = b"50 character byte stringggggggggggggggggggggggggg\xff", # OK
|
|
) -> None: ...
|
|
def f8(
|
|
x: bytes = b"51 character byte stringgggggggggggggggggggggggggg\xff", # Error: PYI053
|
|
) -> None: ...
|
|
|
|
foo: str = "50 character stringggggggggggggggggggggggggggggggg" # OK
|
|
|
|
bar: str = "51 character stringgggggggggggggggggggggggggggggggg" # Error: PYI053
|
|
|
|
baz: bytes = b"50 character byte stringgggggggggggggggggggggggggg" # OK
|
|
|
|
qux: bytes = b"51 character byte stringggggggggggggggggggggggggggg\xff" # Error: PYI053
|
|
|
|
ffoo: str = f"50 character stringggggggggggggggggggggggggggggggg" # OK
|
|
|
|
fbar: str = f"51 character stringgggggggggggggggggggggggggggggggg" # Error: PYI053
|
|
|
|
class Demo:
|
|
"""Docstrings are excluded from this rule. Some padding.""" # OK
|
|
|
|
def func() -> None:
|
|
"""Docstrings are excluded from this rule. Some padding.""" # OK
|
|
|
|
@warnings.deprecated(
|
|
"Veeeeeeeeeeeeeeeeeeeeeeery long deprecation message, but that's okay" # OK
|
|
)
|
|
def deprecated_function() -> None: ...
|
|
|
|
@typing_extensions.deprecated(
|
|
"Another loooooooooooooooooooooong deprecation message, it's still okay" # OK
|
|
)
|
|
def another_deprecated_function() -> None: ...
|
|
|
|
@deprecated("A third loooooooooooooooooooooooooooooong deprecation message") # OK
|
|
def a_third_deprecated_function() -> None: ...
|
|
|
|
def not_warnings_dot_deprecated(
|
|
msg: str
|
|
) -> Callable[[Callable[[], None]], Callable[[], None]]: ...
|
|
|
|
@not_warnings_dot_deprecated(
|
|
"Not warnings.deprecated, so this one *should* lead to PYI053 in a stub!" # Error: PYI053
|
|
)
|
|
def not_a_deprecated_function() -> None: ...
|
|
|
|
fbaz: str = f"51 character {foo} stringgggggggggggggggggggggggggg" # Error: PYI053
|
|
|
|
from typing import TypeAlias, Literal, Annotated
|
|
|
|
# see https://github.com/astral-sh/ruff/issues/12995
|
|
def foo(bar: typing.Literal["a", "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"]):...
|
|
|
|
# Ok
|
|
def f(x: int) -> "AnnotationsForClassesWithVeryLongNamesInQuotesAsReturnTypes":...
|
|
|
|
# Ok
|
|
x: TypeAlias = Literal["fooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooO"]
|
|
|
|
# Ok
|
|
y: TypeAlias = Annotated[int, "metadataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"]
|