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: mingw: default sys.path calculations for windows platforms
Type: enhancement Stage: resolved
Components: Interpreter Core, Windows Versions: Python 3.4
process
Status: closed Resolution: wont fix
Dependencies: Superseder: MinGW is unsupported - close all open issues and list them here.
View: 45538
Assigned To: Nosy List: martin.panter, paul.moore, python-dev, rpetrov, steve.dower, tim.golden, zach.ware
Priority: normal Keywords: patch

Created on 2013-03-31 20:10 by rpetrov, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
0013-MINGW-default-sys.path-calculations-for-windows-plat.patch rpetrov, 2013-03-31 20:10 review
0012-MINGW-default-sys.path-calculations-for-windows-plat.patch rpetrov, 2014-08-03 06:14 status on 2014-08-02 review
Messages (6)
msg185664 - (view) Author: Roumen Petrov (rpetrov) * Date: 2013-03-31 20:10
Part is split of issue3871.
Based of feedback to issue3871 users prefer to use posix installation scheme and this is implementation of 'relative' posix prefix.
msg271441 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2016-07-27 08:45
I wonder if the PYTHONPATH preprocessor definition can just be moved from PC/pyconfig.h. It is a shame to duplicate it, and it only seems to be used in PC/getpathp.c (if you ignore Modules/getpath.c which is unused on Windows).
msg271450 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2016-07-27 13:44
Can MinGW build against Modules/getpath.c? I'd rather just use the posix implementation than scatter ifdefs throughout the non-posix one.
msg275156 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-09-08 21:15
New changeset 6142d2d3c471 by Steve Dower in branch 'default':
Issue #1602: Windows console doesn't input or print Unicode (PEP 528)
https://hg.python.org/cpython/rev/6142d2d3c471
msg275239 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2016-09-09 03:14
I presume the above commit was meant to reference Issue 17620
msg275241 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2016-09-09 03:25
Yeah, my bad :)
History
Date User Action Args
2022-04-11 14:57:43adminsetgithub: 61802
2021-10-21 09:59:48iritkatrielsetresolution: duplicate -> wont fix
2021-10-20 12:45:34iritkatrielsetstatus: open -> closed
superseder: MinGW is unsupported - close all open issues and list them here.
resolution: duplicate
stage: patch review -> resolved
2016-09-09 03:25:21steve.dowersetmessages: + msg275241
2016-09-09 03:14:48martin.pantersetstatus: closed -> open
resolution: fixed -> (no value)
messages: + msg275239

stage: resolved -> patch review
2016-09-08 21:15:29python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg275156

resolution: fixed
stage: patch review -> resolved
2016-07-27 13:44:07steve.dowersetmessages: + msg271450
2016-07-27 08:45:53martin.pantersetnosy: + paul.moore, tim.golden, martin.panter, zach.ware, steve.dower
messages: + msg271441

components: + Windows
stage: patch review
2016-03-11 21:04:42martin.panterlinkissue17605 dependencies
2014-08-03 06:14:20rpetrovsetfiles: + 0012-MINGW-default-sys.path-calculations-for-windows-plat.patch
2013-03-31 20:10:13rpetrovcreate