Add some doctest cleanups for `turtle` and `configparser` (#125288)

Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
This commit is contained in:
Alex Waygood 2024-10-11 00:53:45 +01:00 committed by GitHub
parent dd0ee201da
commit a726ce73ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View File

@ -54,6 +54,7 @@ can be customized by end users easily.
import os
os.remove("example.ini")
os.remove("override.ini")
Quick Start

View File

@ -14,6 +14,11 @@
from turtle import *
turtle = Turtle()
.. testcleanup::
import os
os.remove("my_drawing.ps")
--------------
Introduction