
This issue trackerhas been migrated toGitHub, and is currentlyread-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.
Created on2018-08-31 19:24 byMichael.Felt, last changed2022-04-11 14:59 byadmin. This issue is nowclosed.
| Pull Requests | |||
|---|---|---|---|
| URL | Status | Linked | Edit |
| PR 9017 | merged | Michael.Felt,2018-08-31 19:34 | |
| PR 9023 | merged | miss-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)*![]() | 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)*![]() | 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 | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022-04-11 14:59:05 | admin | set | github: 78739 |
| 2018-09-01 02:46:36 | miss-islington | set | nosy: +miss-islington messages: +msg324459 |
| 2018-09-01 02:36:46 | Mariatta | set | status: open -> closed resolution: fixed messages: +msg324458 stage: patch review -> resolved |
| 2018-09-01 02:31:40 | miss-islington | set | pull_requests: +pull_request8491 |
| 2018-09-01 02:31:11 | Mariatta | set | nosy: +Mariatta messages: +msg324457 |
| 2018-08-31 19:34:18 | Michael.Felt | set | keywords: +patch stage: patch review pull_requests: +pull_request8485 |
| 2018-08-31 19:24:42 | Michael.Felt | create | |