This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: configparser.rst & bz2.rst leave temp files after 'make doctest'
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.11, Python 3.10, Python 3.9, Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, kfollstad, lukasz.langa, miss-islington
Priority: normal Keywords: patch

Created on 2021-06-26 06:01 by kfollstad, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 26909 merged kfollstad, 2021-06-26 06:05
PR 27111 merged miss-islington, 2021-07-13 13:57
PR 27112 merged miss-islington, 2021-07-13 13:58
Messages (5)
msg396541 - (view) Author: Kevin Follstad (kfollstad) * Date: 2021-06-26 06:01
Both Docs/library/configparser.rst and Docs/library/bz2.rst create untracked temp files on the filesystem when 'make doctest' is run because testcleanup directives are absent in these files.
msg397401 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-07-13 13:57
New changeset 48a5aa7f128caf5a46e4326c1fd285cd5fc8e59d by Kevin Follstad in branch 'main':
bpo-44514: Add doctest testcleanup for configparser and bz2 (#26909)
https://github.com/python/cpython/commit/48a5aa7f128caf5a46e4326c1fd285cd5fc8e59d
msg397406 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-07-13 14:33
New changeset 105e6cd67cc793c971b3e83daa87d36516fcba28 by Miss Islington (bot) in branch '3.9':
bpo-44514: Add doctest testcleanup for configparser and bz2 (GH-26909) (#27111)
https://github.com/python/cpython/commit/105e6cd67cc793c971b3e83daa87d36516fcba28
msg397407 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-07-13 14:34
New changeset f514addfbc637a42549ddc422b35b6caad2a4363 by Miss Islington (bot) in branch '3.10':
bpo-44514: Add doctest testcleanup for configparser and bz2 (GH-26909) (GH-27112)
https://github.com/python/cpython/commit/f514addfbc637a42549ddc422b35b6caad2a4363
msg397408 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-07-13 14:35
Thanks, Kevin! ✨ 🍰 ✨
History
Date User Action Args
2022-04-11 14:59:47adminsetgithub: 88680
2021-07-13 14:35:12lukasz.langasetmessages: + msg397408
2021-07-13 14:34:51lukasz.langasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2021-07-13 14:34:14lukasz.langasetmessages: + msg397407
2021-07-13 14:33:57lukasz.langasetmessages: + msg397406
2021-07-13 13:58:02miss-islingtonsetpull_requests: + pull_request25659
2021-07-13 13:57:56miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request25658
2021-07-13 13:57:12lukasz.langasetnosy: + lukasz.langa
messages: + msg397401
2021-06-26 06:05:21kfollstadsetkeywords: + patch
stage: patch review
pull_requests: + pull_request25485
2021-06-26 06:01:54kfollstadcreate