[issue993766] bdist_dumb and --relative on Windows fails

2021-02-03 Thread Steve Dower
Steve Dower added the comment: Distutils is now deprecated (see PEP 632) and all tagged issues are being closed. From now until removal, only release blocking issues will be considered for distutils. If this issue does not relate to distutils, please remove the component and reopen it. If

[issue993766] bdist_dumb and --relative on Windows fails

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue993766] bdist_dumb and --relative on Windows fails

2015-08-21 Thread Chris Hogan
Chris Hogan added the comment: I think ensure_relative is incorrect. The comment in the function states: Take the full path 'path', and make it a relative path. This is useful to make 'path' the second argument to os.path.join(). However, according to the docs for os.path.join, if a

[issue993766] bdist_dumb and --relative on Windows fails

2014-09-30 Thread Mark Lawrence
Mark Lawrence added the comment: Is this still a problem? Normally I'd be perfectly happy to try something on Windows but the mere mention of distutils sends shivers down my spine :( -- components: +Windows nosy: +BreamoreBoy, dstufft, eric.araujo versions: +Python 3.4, Python 3.5

[issue993766] bdist_dumb and --relative on Windows fails

2014-09-30 Thread Patrice LACOUTURE
Patrice LACOUTURE added the comment: I don't have any Windows box around to check, but I can see that there has been no change since then in this portion of code in branches 2.4, 2.7 and 3.4. Therefore, this issue is very likely still there. -- nosy: +PatriceL

[issue993766] bdist_dumb and --relative on Windows fails

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- stage: - needs patch type: - behavior versions: +Python 2.7, Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue993766

[issue993766] bdist_dumb and --relative on Windows fails

2009-02-10 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- assignee: - tarek nosy: +tarek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue993766 ___ ___

[issue993766] bdist_dumb and --relative on Windows fails

2008-06-26 Thread zouguangxian
zouguangxian [EMAIL PROTECTED] added the comment: I encounter the same problem of Mark Hammond. I check the code in repository, the ensure_relative function in python25 is: def ensure_relative (path): Take the full path 'path', and make it a relative path so it can be the second