We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2924bb1 commit 48a5aa7Copy full SHA for 48a5aa7
Doc/library/bz2.rst
@@ -325,3 +325,8 @@ Writing and reading a bzip2-compressed file in binary mode:
325
... content = f.read()
326
>>> content == data # Check equality to original object after round-trip
327
True
328
+
329
+.. testcleanup::
330
331
+ import os
332
+ os.remove("myfile.bz2")
Doc/library/configparser.rst
@@ -46,6 +46,11 @@ can be customized by end users easily.
46
47
import configparser
48
49
50
51
52
+ os.remove("example.ini")
53
54
55
Quick Start
56
-----------
0 commit comments