Skip to content

Commit 3db0138

Browse files
committed
restore scopes.pyi
1 parent 3ed7716 commit 3db0138

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
class Scope:
2+
level = ...
3+
scope = ...
4+
target = ...
5+
resolvers = ...
6+
temps = ...
7+
def __init__(
8+
self, level, global_dict=..., local_dict=..., resolvers=..., target=...
9+
) -> None: ...
10+
@property
11+
def has_resolvers(self) -> bool: ...
12+
def resolve(self, key: str, is_local: bool): ...
13+
def swapkey(self, old_key: str, new_key: str, new_value=...): ...
14+
def add_tmp(self, value) -> str: ...
15+
@property
16+
def ntemps(self) -> int: ...
17+
@property
18+
def full_scope(self): ...

0 commit comments

Comments
 (0)