[Python-checkins] devguide: Tweak some URLs to start pointing towards hg.

brett.cannon python-checkins at python.org
Sun Feb 6 02:10:15 CET 2011


brett.cannon pushed 93128df24b2b to devguide:

http://hg.python.org/devguide/rev/93128df24b2b
changeset:   236:93128df24b2b
branch:      hg_transition
user:        Brett Cannon <brett at python.org>
date:        Sat Feb 05 16:03:57 2011 -0800
summary:
  Tweak some URLs to start pointing towards hg.

files:
  setup.rst

diff --git a/setup.rst b/setup.rst
--- a/setup.rst
+++ b/setup.rst
@@ -14,11 +14,11 @@
 Version Control Setup
 ---------------------
 
-CPython is developed using `Subversion (commonly abbreviated SVN)
-<http://subversion.tigris.org/>`_.
+CPython is developed using `Mercurial (commonly abbreviated 'hg')
+<http://hg-scm.org/>`_.
 It is easily available for common Unix systems by way of the standard package
-manager; under Windows, you might want to use the `TortoiseSVN
-<http://tortoisesvn.net/>`_ graphical client.
+manager; under Windows, you might want to use the `TortoiseHg
+<http://tortoisehg.org/>`_ graphical client.
 
 
 .. _checkout:
@@ -37,13 +37,18 @@
 code. To get a read-only checkout of
 the :ref:`in-development <indevbranch>` branch of Python, run::
 
-    svn co http://svn.python.org/projects/python/branches/py3k
+    hg clone http://hg.python.org/cpython#py3k
+
+.. warning::
+   XXX assuming 'default' branch is unused. Regardless,  probably wrong URL as
+   PEP 385 suggests py3k will be its own repo compared to Python 2 which is not
+   the case as of 2011-02-05. If this is wrong, also change all other hg URLs.
 
 If you want a read-only checkout of an already-released version of Python,
 i.e., a version in :ref:`maintenance mode <maintbranch>`, run something
 like the following which gets you a checkout for Python 3.1::
 
-    svn co http://svn.python.org/projects/python/branches/release31-maint
+    hg clone http://hg.python.org/cpython#release-31maint
 
 To check out a version of Python other than 3.1, simply change the number in
 the above URL to the major/minor version (e.g., ``release27-maint`` for Python

--
Repository URL: http://hg.python.org/devguide


More information about the Python-checkins mailing list