mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-07-18 14:20:11 +08:00
Drop Python 3.8 branches (#13776)
This commit is contained in:
+1
-5
@@ -75,11 +75,7 @@ class Trace:
|
||||
def runctx(
|
||||
self, cmd: str | types.CodeType, globals: Mapping[str, Any] | None = None, locals: Mapping[str, Any] | None = None
|
||||
) -> None: ...
|
||||
if sys.version_info >= (3, 9):
|
||||
def runfunc(self, func: Callable[_P, _T], /, *args: _P.args, **kw: _P.kwargs) -> _T: ...
|
||||
else:
|
||||
def runfunc(self, func: Callable[_P, _T], *args: _P.args, **kw: _P.kwargs) -> _T: ...
|
||||
|
||||
def runfunc(self, func: Callable[_P, _T], /, *args: _P.args, **kw: _P.kwargs) -> _T: ...
|
||||
def file_module_function_of(self, frame: types.FrameType) -> _FileModuleFunction: ...
|
||||
def globaltrace_trackcallers(self, frame: types.FrameType, why: str, arg: Any) -> None: ...
|
||||
def globaltrace_countfuncs(self, frame: types.FrameType, why: str, arg: Any) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user