diff options
author | Raymond Hettinger <python@rcn.com> | 2011-01-20 09:47:04 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-01-20 09:47:04 (GMT) |
commit | 00db6aa4a6c3b55361e6235999710728b491bd4a (patch) | |
tree | 43ea72045e9e57aa8ca8a5fe8a7625151da203a4 /Doc | |
parent | 2270d58a2d70990aac8a30f6123444ad66321826 (diff) | |
download | cpython-00db6aa4a6c3b55361e6235999710728b491bd4a.zip cpython-00db6aa4a6c3b55361e6235999710728b491bd4a.tar.gz cpython-00db6aa4a6c3b55361e6235999710728b491bd4a.tar.bz2 |
Add an entry for the code repository.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.2.rst | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 08da4f5..eebee50 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -823,8 +823,8 @@ collections renewing an entry with ``od[k] = od.pop(k)``. A fast move-to-end operation is useful for resequencing entries. For example, - an ordered dictionary can being used to track access order by aging entries - from oldest to most recently accessed. + an ordered dictionary can be used to track order of access by aging entries + from the oldest to the most recently accessed. >>> d = OrderedDict.fromkeys(['a', 'b', 'X', 'd', 'e']) >>> list(d) @@ -1781,8 +1781,9 @@ and the ``'replace'`` handler for encoding. On Mac OS/X, Python decodes command line arguments with ``'utf-8'`` rather than the locale encoding. -By default, tarfile uses ``'utf-8'`` encoding on Windows (instead of ``'mbcs'``) -and the ``'surrogateescape'`` error handler on all operating systems. +By default, :mod:`tarfile` uses ``'utf-8'`` encoding on Windows (instead of +``'mbcs'``) and the ``'surrogateescape'`` error handler on all operating +systems. Documentation @@ -1825,6 +1826,22 @@ IDLE (Contributed by Kevin Walzer, Ned Deily, and Ronald Oussoren; :issue:`6075`.) +Code Repository +=============== + +In addition to the existing Subversion code repository at http://svn.python.org +there is now a `Mercurial <http://mercurial.selenic.com/>`_ repository at +http://hg.python.org/ . + +After the 3.2 release, there are plans to switch to Mercurial as the primary +repository. This distributed version control system should make it easier for +members of the community to create and share external changesets. See +:pep:`385` for details. + +To learn to use the new version control system, see the `tutorial by Joel +Spolsky <http://hginit.com>`_ or the `guide to Mercurial workflows +<http://mercurial.selenic.com/guide/>`_. + Build and C API Changes ======================= |