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

@@ -159,12 +159,12 @@ wave.Wave_write.initfp
# sys attributes that are not always defined
sys.gettotalrefcount # Available on python debug builds
sys.last_traceback
sys.last_type
sys.last_value
sys.ps1
sys.ps2
sys.tracebacklimit
sys.last_traceback # Available after an unhandled error has occured
sys.last_type # Available after an unhandled error has occured
sys.last_value # Available after an unhandled error has occured
sys.ps1 # Available in interactive mode
sys.ps2 # Available in interactive mode
sys.tracebacklimit # Must be set first
# ==========