Skip to content

Commit e6b12ec

Browse files
authored
1 parent 6b4e7f1 commit e6b12ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/bdb.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ class Bdb:
8888
def run(
8989
self, cmd: str | CodeType, globals: dict[str, Any] | None = None, locals: Mapping[str, Any] | None = None
9090
) -> None: ...
91-
def runeval(self, expr: str, globals: dict[str, Any] | None = None, locals: Mapping[str, Any] | None = None) -> None: ...
91+
def runeval(self, expr: str, globals: dict[str, Any] | None = None, locals: Mapping[str, Any] | None = None) -> Any: ...
9292
def runctx(self, cmd: str | CodeType, globals: dict[str, Any] | None, locals: Mapping[str, Any] | None) -> None: ...
9393
def runcall(self, func: Callable[_P, _T], /, *args: _P.args, **kwds: _P.kwargs) -> _T | None: ...
9494
if sys.version_info >= (3, 14):

0 commit comments

Comments
 (0)