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: svnversion_init() doesn't support svn urls in sandbox/trunk
Type: behavior Stage: resolved
Components: Build, Interpreter Core Versions: Python 3.1, Python 2.6
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: BreamoreBoy, ajaksu2, christian.heimes, loewis
Priority: low Keywords:

Created on 2008-01-14 21:19 by christian.heimes, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (5)
msg59920 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2008-01-14 21:19
Python fails to start if headurl points to a svn url under sandbox/.
Python/sysmodule.c:svnversion_init() should support those urls or at
least fail silently.

static const char headurl[] = "$HeadURL:
svn+ssh://pythondev@svn.python.org/sandbox/trunk/pep370/Python/sysmodule.c
$"
msg59928 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2008-01-14 22:10
I fail to see why it is a bug that such URLs are not supported - why
can't you develop pep370 in a regular branch?

As an RFE, it would certainly possible to support such a case. If either
/python/ isn't found, or isn't followed by tags/branches/trunk, I'd set
shortbranch to "foreign".
msg87910 - (view) Author: Daniel Diniz (ajaksu2) * (Python triager) Date: 2009-05-16 19:37
I'm setting as 'behavior' because ISTM that a bogus svnversion making
Python fail to start is a bug.
msg116866 - (view) Author: Mark Lawrence (BreamoreBoy) * Date: 2010-09-19 12:07
Is this ever likely to happen given the switch to Mercurial, or is that a different scenario to this?
msg176417 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2012-11-26 14:54
I'm closing this issue as `YAGNI anymore`.
History
Date User Action Args
2022-04-11 14:56:29adminsetgithub: 46152
2012-11-26 14:54:57christian.heimessetstatus: open -> closed
resolution: out of date
messages: + msg176417

stage: test needed -> resolved
2010-09-19 12:07:50BreamoreBoysetnosy: + BreamoreBoy
messages: + msg116866
2009-05-16 19:37:05ajaksu2setpriority: normal -> low

type: behavior
versions: + Python 3.1, - Python 3.0
nosy: + ajaksu2

messages: + msg87910
stage: test needed
2008-01-14 22:10:36loewissetnosy: + loewis
messages: + msg59928
2008-01-14 21:19:51christian.heimescreate