@@ -74,8 +74,6 @@ The following component(s) should be selected if the issue applies to:
74
74
75
75
2to3 (2.x to 3.0 conversion tool)
76
76
The 2to3 conversion tool in `Lib/lib2to3 `_.
77
- Benchmarks
78
- The benchmarks in the benchmarks _ repo.
79
77
Build
80
78
The build process.
81
79
ctypes
@@ -282,7 +280,7 @@ properly.
282
280
The issue tracker automatically translates the legacy svn revision
283
281
``<number> `` to its corresponding Mercurial changeset identifier.
284
282
* ``Dir/file.ext `` and ``Dir/file.ext:NNN `` generate links to files in the
285
- `Python source code repositories <https://hg. python.org /cpython/file / >`_,
283
+ `Python source code repositories <https://github.com/ python/cpython/ >`_,
286
284
possibly linking to the line number specified after the ``: ``.
287
285
* ``PEP <number> `` and ``PEP<number> `` link to the
288
286
:abbr: `PEP ( Python Enhancement Proposal ) ` ``<number> ``.
@@ -291,33 +289,32 @@ properly.
291
289
the Devguide, this page, and this section respectively.
292
290
293
291
294
- .. _CPython : https://hg.python.org/cpython/file/default/
295
- .. _Doc : https://hg.python.org/cpython/file/default/Doc/
296
- .. _Grammar : https://hg.python.org/cpython/file/default/Grammar/
297
- .. _Lib : https://hg.python.org/cpython/file/default/Lib/
298
- .. _Lib/lib2to3 : https://hg.python.org/cpython/file/default/Lib/lib2to3/
299
- .. _Lib/ctypes : https://hg.python.org/cpython/file/default/Lib/ctypes/
300
- .. _Lib/distutils : https://hg.python.org/cpython/file/default/Lib/distutils/
301
- .. _Lib/doctest.py : https://hg.python.org/cpython/file/default/Lib/doctest.py
302
- .. _Lib/idlelib : https://hg.pyt
8000
hon.org/cpython/file/default/Lib/idlelib/
303
- .. _Lib/io.py : https://hg.python.org/cpython/file/default/Lib/io.py
304
- .. _Lib/re.py : https://hg.python.org/cpython/file/default/Lib/re.py
305
- .. _Lib/test : https://hg.python.org/cpython/file/default/Lib/test/
306
- .. _Lib/test/regrtest.py : https://hg.python.org/cpython/file/default/Lib/test/regrtest.py
307
- .. _Lib/test/support : https://hg.python.org/cpython/file/default/Lib/test/support/
308
- .. _Lib/tkinter : https://hg.python.org/cpython/file/default/Lib/tkinter/
309
- .. _Lib/unittest : https://hg.python.org/cpython/file/default/Lib/unittest/
310
- .. _Lib/xml : https://hg.python.org/cpython/file/default/Lib/xml/
311
- .. _Modules : https://hg.python.org/cpython/file/default/Modules/
312
- .. _Modules/_io : https://hg.python.org/cpython/file/default/Modules/_io/
313
- .. _Modules/_sre.c : https://hg.python.org/cpython/file/default/Modules/_sre.c
314
- .. _Objects : https://hg.python.org/cpython/file/default/Objects/
315
- .. _Objects/unicodeobject.c : https://hg.python.org/cpython/file/default/Objects/unicodeobject.c
316
- .. _Parser : https://hg.python.org/cpython/file/default/Parser/
317
- .. _Python : https://hg.python.org/cpython/file/default/Python/
318
- .. _Tools : https://hg.python.org/cpython/file/default/Tools/
319
- .. _Tools/demo : https://hg.python.org/cpython/file/default/Tools/demo/
320
- .. _benchmarks : https://hg.python.org/benchmarks/
321
- .. _Developer's guide : https://hg.python.org/devguide/
292
+ .. _CPython : https://github.com/python/cpython/
293
+ .. _Doc : https://github.com/python/cpython/tree/master/Doc/
294
+ .. _Grammar : https://github.com/python/cpython/tree/master/Grammar/
295
+ .. _Lib : https://github.com/python/cpython/tree/master/Lib/
296
+ .. _Lib/lib2to3 : https://github.com/python/cpython/tree/master/Lib/lib2to3/
297
+ .. _Lib/ctypes : https://github.com/python/cpython/tree/master/Lib/ctypes/
298
+ .. _Lib/distutils : https://github.com/python/cpython/tree/master/Lib/distutils/
299
+ .. _Lib/doctest.py : https://github.com/python/cpython/tree/master/Lib/doctest.py
300
+ .. _Lib/idlelib : https://github.com/python/cpython/tree/master/Lib/idlelib/
301
+ .. _Lib/io.py : https://github.com/python/cpython/tree/master/Lib/io.py
302
+ .. _Lib/re.py : https://github.com/python/cpython/tree/master/Lib/re.py
303
+ .. _Lib/test : https://github.com/python/cpython/tree/master/Lib/test/
304
+ .. _Lib/test/regrtest.py : https://github.com/python/cpython/tree/master/Lib/test/regrtest.py
305
+ .. _Lib/test/support : https://github.com/python/cpython/tree/master/Lib/test/support/
306
+ .. _Lib/tkinter : https://github.com/python/cpython/tree/master/Lib/tkinter/
307
+ .. _Lib/unittest : https://github.com/python/cpython/tree/master/Lib/unittest/
308
+ .. _Lib/xml : https://github.com/python/cpython/tree/master/Lib/xml/
309
+ .. _Modules : https://github.com/python/cpython/tree/master/Modules/
310
+ .. _Modules/_io : https://github.com/python/cpython/tree/master/Modules/_io/
311
+ .. _Modules/_sre.c : https://github.com/python/cpython/tree/master/Modules/_sre.c
312
+ .. _Objects : https://github.com/python/cpython/tree/master/Objects/
313
+ .. _Objects/unicodeobject.c : https://github.com/python/cpython/tree/master/Objects/unicodeobject.c
314
+ .. _Parser : https://github.com/python/cpython/tree/master/Parser/
315
+ .. _Python : https://github.com/python/cpython/tree/master/Python/
316
+ .. _Tools : https://github.com/python/cpython/tree/master/Tools/
317
+ .. _Tools/demo : https://github.com/python/cpython/tree/master/Tools/demo/
318
+ .. _Developer's guide : https://github.com/python/devguide/
322
319
.. _GSoC : http://code.google.com/soc/
323
- .. _issue tracker : http ://bugs.python.org
320
+ .. _issue tracker : https ://bugs.python.org
0 commit comments