sys.tracebacklimit can be set to None (#13173)

This commit is contained in:
Stephen Morton
2024-12-03 04:16:45 -08:00
committed by GitHub
parent a980fc5308
commit f3dfc90741
2 changed files with 7 additions and 7 deletions

View File

@@ -73,7 +73,7 @@ if sys.version_info >= (3, 10):
__stdin__: Final[TextIOWrapper | None] # Contains the original value of stdin
__stdout__: Final[TextIOWrapper | None] # Contains the original value of stdout
__stderr__: Final[TextIOWrapper | None] # Contains the original value of stderr
tracebacklimit: int
tracebacklimit: int | None
version: str
api_version: int
warnoptions: Any