Issue 17602: mingw: default sys.path calculations for windows platforms (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/61802

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 . Based of feedback to 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:43 admin set github: 61802
2021-10-21 09:59:48 iritkatriel set resolution: duplicate -> wont fix
2021-10-20 12:45:34 iritkatriel set status: open -> closedsuperseder: MinGW is unsupported - close all open issues and list them here.resolution: duplicatestage: patch review -> resolved
2016-09-09 03:25:21 steve.dower set messages: +
2016-09-09 03:14:48 martin.panter set status: closed -> openresolution: fixed -> (no value)messages: + stage: resolved -> patch review
2016-09-08 21:15:29 python-dev set status: open -> closednosy: + python-devmessages: + resolution: fixedstage: patch review -> resolved
2016-07-27 13:44:07 steve.dower set messages: +
2016-07-27 08:45:53 martin.panter set nosy: + paul.moore, tim.golden, martin.panter, zach.ware, steve.dowermessages: + components: + Windowsstage: patch review
2016-03-11 21:04:42 martin.panter link issue17605 dependencies
2014-08-03 06:14:20 rpetrov set files: + 0012-MINGW-default-sys.path-calculations-for-windows-plat.patch
2013-03-31 20:10:13 rpetrov create