mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-24 12:51:27 +08:00
use _typeshed's Path aliases (#4214)
This commit is contained in:
@@ -1,16 +1,11 @@
|
||||
import os
|
||||
import sys
|
||||
from typing import Any, Callable, Dict, Optional, Text, TypeVar, Union
|
||||
from _typeshed import AnyPath
|
||||
from typing import Any, Callable, Dict, Optional, TypeVar, Union
|
||||
|
||||
def run(statement: str, filename: Optional[str] = ..., sort: Union[str, int] = ...) -> None: ...
|
||||
def runctx(statement: str, globals: Dict[str, Any], locals: Dict[str, Any], filename: Optional[str] = ..., sort: Union[str, int] = ...) -> None: ...
|
||||
|
||||
_SelfT = TypeVar('_SelfT', bound=Profile)
|
||||
_T = TypeVar('_T')
|
||||
if sys.version_info >= (3, 6):
|
||||
_Path = Union[bytes, Text, os.PathLike[Any]]
|
||||
else:
|
||||
_Path = Union[bytes, Text]
|
||||
|
||||
class Profile:
|
||||
bias: int
|
||||
@@ -20,7 +15,7 @@ class Profile:
|
||||
def simulate_call(self, name: str) -> None: ...
|
||||
def simulate_cmd_complete(self) -> None: ...
|
||||
def print_stats(self, sort: Union[str, int] = ...) -> None: ...
|
||||
def dump_stats(self, file: _Path) -> None: ...
|
||||
def dump_stats(self, file: AnyPath) -> None: ...
|
||||
def create_stats(self) -> None: ...
|
||||
def snapshot_stats(self) -> None: ...
|
||||
def run(self: _SelfT, cmd: str) -> _SelfT: ...
|
||||
|
||||
Reference in New Issue
Block a user