Movatterモバイル変換


[0]ホーム

URL:


homepage

Issue34558

This issue trackerhas been migrated toGitHub, and is currentlyread-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title:ctypes.find_library processing - missing parenthesis prevents subprocess from getting a returncode
Type:behaviorStage:resolved
Components:Library (Lib), TestsVersions:Python 3.8, Python 3.7
process
Status:closedResolution:fixed
Dependencies:Superseder:
Assigned To:Nosy List: Mariatta, Michael.Felt, miss-islington
Priority:normalKeywords:patch

Created on2018-08-31 19:24 byMichael.Felt, last changed2022-04-11 14:59 byadmin. This issue is nowclosed.

Pull Requests
URLStatusLinkedEdit
PR 9017mergedMichael.Felt,2018-08-31 19:34
PR 9023mergedmiss-islington,2018-09-01 02:31
Messages (4)
msg324441 -(view)Author: Michael Felt (Michael.Felt)*Date: 2018-08-31 19:24
With AIX I have seen the following messages repeatedly:root@x066:[/data/prj/python/python3-3.8]./python ../git/*Lib/ctypes/test/test_loading.py/data/prj/python/git/python3-3.8/Lib/subprocess.py:852: ResourceWarning: subprocess 11796734 is still running  ResourceWarning, source=self)/data/prj/python/git/python3-3.8/Lib/subprocess.py:852: ResourceWarning: subprocess 11796480 is still running  ResourceWarning, source=self)There is python2 to python3 missed change typo that is preventing the returncode from ever being determineddiff --git a/Lib/ctypes/_aix.py b/Lib/ctypes/_aix.pyindex463f60a284..190cac6507 100644--- a/Lib/ctypes/_aix.py+++ b/Lib/ctypes/_aix.py@@ -115,7 +115,7 @@ def get_ld_headers(file):         else:             break     p.stdout.close()-    p.wait+    p.wait()     return ldr_headers def get_shared(ld_headers):PR will be posted.
msg324457 -(view)Author: Mariatta (Mariatta)*(Python committer)Date: 2018-09-01 02:31
New changeset172a71f19bb5e9624651850b315f403c460b9699 by Mariatta (Michael Felt) in branch 'master':bpo-34558: Add missing parentheses in _aix.py (GH-9017)https://github.com/python/cpython/commit/172a71f19bb5e9624651850b315f403c460b9699
msg324458 -(view)Author: Mariatta (Mariatta)*(Python committer)Date: 2018-09-01 02:36
Thanks!
msg324459 -(view)Author: miss-islington (miss-islington)Date: 2018-09-01 02:46
New changeset89c9043ee09d89c99f70e61d8fc0ba45e255b055 by Miss Islington (bot) in branch '3.7':bpo-34558: Add missing parentheses in _aix.py (GH-9017)https://github.com/python/cpython/commit/89c9043ee09d89c99f70e61d8fc0ba45e255b055
History
DateUserActionArgs
2022-04-11 14:59:05adminsetgithub: 78739
2018-09-01 02:46:36miss-islingtonsetnosy: +miss-islington
messages: +msg324459
2018-09-01 02:36:46Mariattasetstatus: open -> closed
resolution: fixed
messages: +msg324458

stage: patch review -> resolved
2018-09-01 02:31:40miss-islingtonsetpull_requests: +pull_request8491
2018-09-01 02:31:11Mariattasetnosy: +Mariatta
messages: +msg324457
2018-08-31 19:34:18Michael.Feltsetkeywords: +patch
stage: patch review
pull_requests: +pull_request8485
2018-08-31 19:24:42Michael.Feltcreate
Supported byThe Python Software Foundation,
Powered byRoundup
Copyright © 1990-2022,Python Software Foundation
Legal Statements

[8]ページ先頭

©2009-2026 Movatter.jp