Destroy the turtle window after its doctests finish (GH-125294)

This commit is contained in:
Zachary Ware 2026-02-28 15:12:05 -06:00 committed by GitHub
parent ef41f73611
commit f1446d3922
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,6 +16,9 @@
import os
os.remove("my_drawing.ps")
# Destroy the turtle window after tests are complete
# Imported via star import in testsetup
bye()
--------------