Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions stdlib/code.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class InteractiveInterpreter:
class InteractiveConsole(InteractiveInterpreter):
buffer: list[str] # undocumented
filename: str # undocumented
local_exit: bool # undocumented
Comment thread
jonathandung marked this conversation as resolved.
Outdated
if sys.version_info >= (3, 13):
def __init__(
self, locals: dict[str, Any] | None = None, filename: str = "<console>", *, local_exit: bool = False
Expand Down
Loading