Skip to content

Commit 23352dd

Browse files
authored
Add local_exit annotation under code.pyi
See #15518
1 parent 2839fd5 commit 23352dd

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

stdlib/code.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class InteractiveInterpreter:
2323
class InteractiveConsole(InteractiveInterpreter):
2424
buffer: list[str] # undocumented
2525
filename: str # undocumented
26+
local_exit: bool # undocumented
2627
if sys.version_info >= (3, 13):
2728
def __init__(
2829
self, locals: dict[str, Any] | None = None, filename: str = "<console>", *, local_exit: bool = False

0 commit comments

Comments
 (0)