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: Remove Lib/test/outstanding_bugs.py
Type: Stage: resolved
Components: Tests Versions: Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: vstinner
Priority: normal Keywords: patch

Created on 2019-07-01 15:17 by vstinner, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 14516 merged vstinner, 2019-07-01 15:20
Messages (3)
msg347031 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-07-01 15:17
Lib/test/outstanding_bugs.py was created by:

commit c4e2a9b70ac49cdd8bcc9ca60afac20162f84f24
Author: Georg Brandl <georg@python.org>
Date:   Sun Jan 8 14:32:19 2006 +0000

    Add a test file (which isn't run by regrtest) for bugs which
    aren't fixed yet.
    
    Includes a first test (for compiler).

and has not been touched since:


commit bdce938af2af03b2eb0d0e4731f1b8c4b965eaf5
Author: Zachary Ware <zachary.ware@gmail.com>
Date:   Fri Dec 20 13:25:07 2013 -0600

    Update test.outstanding_bugs.py

diff --git a/Lib/test/outstanding_bugs.py b/Lib/test/outstanding_bugs.py
index 0849ee5885..7e527a6706 100644
--- a/Lib/test/outstanding_bugs.py
+++ b/Lib/test/outstanding_bugs.py
@@ -10,79 +10,9 @@ import unittest
 from test import support
 
 #
-# One test case for outstanding bugs at the moment:
+# No test cases for outstanding bugs at the moment.
 #
(...)


I propose to remove this file. We don't manage "outstanding bugs" this way anymore.
msg347043 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-07-01 16:35
New changeset e21b45a8e71d06a6a03f99261cab33e72b896bb9 by Victor Stinner in branch 'master':
bpo-37472: Remove Lib/test/outstanding_bugs.py (GH-14516)
https://github.com/python/cpython/commit/e21b45a8e71d06a6a03f99261cab33e72b896bb9
msg347044 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-07-01 16:36
I removed the file in the master branch. I don't think that it's worth it to remove it from other branches, so I just close the issue.


FYI I found this file while working on PR 14518:

commit 8f4ef3b019ce380022018587571b0f970e668de3 (upstream/master, master)
Author: Victor Stinner <vstinner@redhat.com>
Date:   Mon Jul 1 18:28:25 2019 +0200

    Remove unused imports in tests (GH-14518)
History
Date User Action Args
2022-04-11 14:59:17adminsetgithub: 81653
2019-07-01 16:36:46vstinnersetstatus: open -> closed
resolution: fixed
messages: + msg347044

stage: patch review -> resolved
2019-07-01 16:35:12vstinnersetmessages: + msg347043
2019-07-01 15:20:09vstinnersetkeywords: + patch
stage: patch review
pull_requests: + pull_request14332
2019-07-01 15:17:59vstinnercreate