This website requires JavaScript.
Explore
Help
Sign In
Python
/
ruff
mirror of
https://github.com/astral-sh/ruff
Watch
1
Star
0
Fork
You've already forked ruff
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
ada4c4cb1f
ruff
/
crates
/
ty_python_semantic
/
resources
/
mdtest
/
import
/
stubs.md
290 B
Raw
Blame
History
Stubs
Import from stub declaration
from
b
import
x
y
=
x
reveal_type
(
y
)
# revealed: int
b.pyi
:
x
:
int
Import from non-stub with declaration and definition
from
b
import
x
y
=
x
reveal_type
(
y
)
# revealed: int
b.py
:
x
:
int
=
1