mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
14 lines
238 B
Python
14 lines
238 B
Python
type("")
|
|
type(b"")
|
|
type(0)
|
|
type(0.0)
|
|
type(0j)
|
|
|
|
# OK
|
|
type(arg)(" ")
|
|
|
|
# OK
|
|
y = x.dtype.type(0.0)
|
|
|
|
# Regression test for: https://github.com/astral-sh/ruff/issues/7455#issuecomment-1722459841
|
|
assert isinstance(fullname, type("")is not True)
|