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: Make it possible to use SVK to develop Python
Type: Stage:
Components: Interpreter Core Versions: Python 3.0
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: collinwinter Nosy List: collinwinter, nnorwitz
Priority: normal Keywords: patch

Created on 2007-08-15 01:00 by collinwinter, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
svn_rev.patch collinwinter, 2007-08-15 01:00
Messages (3)
msg53030 - (view) Author: Collin Winter (collinwinter) * (Python committer) Date: 2007-08-15 01:00
I want to use SVK instead of SVN when developing Python on my laptop. Currently, the parsing of HEADURL in Python/sysmodule.c:svnversion_init() kills the interpreter at start-up because the HEADURL for SVK looks like /py3k/local/Python/sysmodule.c.

The attached patch causes svnversion_init() to use "unknown" for the branch name instead of raising a fatal error when it encounters a mis-formatted HEADURL.
msg53031 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2007-08-16 05:57
This is fine.  Note the indentation is screwed up.  It looks like some mixing of tabs and spaces.  It would be good to add a comment near the copying of "unknown" to mention about supporting svk and possibly other SCM systems.
msg53032 - (view) Author: Collin Winter (collinwinter) * (Python committer) Date: 2007-08-22 19:48
Committed as r57283.
History
Date User Action Args
2022-04-11 14:56:25adminsetgithub: 45312
2008-01-06 22:29:45adminsetkeywords: - py3k
versions: + Python 3.0
2007-08-15 01:00:32collinwintercreate