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: PC/launcher.c,one more argument than required
Type: behavior Stage: resolved
Components: Windows Versions: Python 3.11, Python 3.10, Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: brotherbeer, miss-islington, paul.moore, steve.dower, tim.golden, vinay.sajip, zach.ware
Priority: normal Keywords: patch

Created on 2021-06-11 08:49 by brotherbeer, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 29843 merged vinay.sajip, 2021-11-29 13:59
PR 29849 merged miss-islington, 2021-11-29 17:27
PR 29850 merged miss-islington, 2021-11-29 17:27
Messages (4)
msg395620 - (view) Author: Brother Beer (brotherbeer) Date: 2021-06-11 08:49
cpython-3.10.0b2/PC/launcher.c, line 347

One more argument than required?

 345         else if (attrs & FILE_ATTRIBUTE_DIRECTORY) {
 346             debug(L"locate_pythons_for_key: '%ls' is a directory\n",
 347                   ip->executable, attrs);
 348         }
msg407302 - (view) Author: Vinay Sajip (vinay.sajip) * (Python committer) Date: 2021-11-29 17:27
New changeset 4141d94fa608cdf5c8cd3e62f7ea1c27fd41eb8d by Vinay Sajip in branch 'main':
bpo-44391: Remove unused argument from a varargs call. (GH-29843)
https://github.com/python/cpython/commit/4141d94fa608cdf5c8cd3e62f7ea1c27fd41eb8d
msg407303 - (view) Author: Vinay Sajip (vinay.sajip) * (Python committer) Date: 2021-11-29 17:53
New changeset 40a57532a5ad5dfd81ab6c72c5fb2e2dc4509199 by Miss Islington (bot) in branch '3.9':
[3.9] bpo-44391: Remove unused argument from a varargs call. (GH-29843) (GH-29850)
https://github.com/python/cpython/commit/40a57532a5ad5dfd81ab6c72c5fb2e2dc4509199
msg407304 - (view) Author: Vinay Sajip (vinay.sajip) * (Python committer) Date: 2021-11-29 18:00
New changeset af39cfa6ca1e5dc4e5d28c1f09a875a14354e4ae by Miss Islington (bot) in branch '3.10':
[3.10] bpo-44391: Remove unused argument from a varargs call. (GH-29843) (GH-29849)
https://github.com/python/cpython/commit/af39cfa6ca1e5dc4e5d28c1f09a875a14354e4ae
History
Date User Action Args
2022-04-11 14:59:46adminsetgithub: 88557
2021-11-29 18:01:46vinay.sajipsetstatus: open -> closed
stage: patch review -> resolved
resolution: fixed
versions: + Python 3.9
2021-11-29 18:00:39vinay.sajipsetmessages: + msg407304
2021-11-29 17:53:46vinay.sajipsetmessages: + msg407303
2021-11-29 17:27:12miss-islingtonsetpull_requests: + pull_request28079
2021-11-29 17:27:08miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request28078
2021-11-29 17:27:00vinay.sajipsetmessages: + msg407302
2021-11-29 13:59:39vinay.sajipsetkeywords: + patch
stage: patch review
pull_requests: + pull_request28072
2021-11-24 18:01:53zach.waresetnosy: + paul.moore, vinay.sajip, tim.golden, zach.ware, steve.dower

components: + Windows
versions: + Python 3.11
2021-06-11 08:49:15brotherbeercreate