Skip to content

Commit c190146

Browse files
authored
Move local_exit annotation under version > 3.13
1 parent b82b455 commit c190146

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/code.pyi

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

0 commit comments

Comments
 (0)