PEP 421: Fix Sphinx reference warnings (#4150)
This commit is contained in:
parent
96b79107f9
commit
f91366e50c
|
@ -1,12 +1,9 @@
|
|||
PEP: 421
|
||||
Title: Adding sys.implementation
|
||||
Version: $Revision$
|
||||
Last-Modified: $Date$
|
||||
Author: Eric Snow <ericsnowcurrently@gmail.com>
|
||||
BDFL-Delegate: Barry Warsaw
|
||||
Status: Final
|
||||
Type: Standards Track
|
||||
Content-Type: text/x-rst
|
||||
Created: 26-Apr-2012
|
||||
Python-Version: 3.3
|
||||
Post-History: 26-Apr-2012
|
||||
|
@ -466,15 +463,12 @@ References
|
|||
.. [#ironpython] Feedback from the IronPython developers:
|
||||
https://mail.python.org/pipermail/ironpython-users/2012-May/015980.html
|
||||
|
||||
.. [#dino_viehland_2009] (2009) Dino Viehland offers his opinion:
|
||||
https://mail.python.org/pipermail/python-dev/2009-October/092894.html
|
||||
* (2009) Dino Viehland offers his opinion:
|
||||
https://mail.python.org/pipermail/python-dev/2009-October/092894.html
|
||||
|
||||
.. [#jeff_hardy_2012] (2012) Jeff Hardy offers his opinion:
|
||||
https://mail.python.org/pipermail/ironpython-users/2012-May/015981.html
|
||||
|
||||
.. [#jython] Feedback from the Jython developers:
|
||||
???
|
||||
|
||||
.. [#frank_wierzbicki_2009] (2009) Frank Wierzbicki offers his opinion:
|
||||
https://mail.python.org/pipermail/python-dev/2009-October/092974.html
|
||||
|
||||
|
@ -485,22 +479,23 @@ References
|
|||
https://mail.python.org/pipermail/pypy-dev/2012-May/009884.html
|
||||
|
||||
.. [#guess] The ``platform`` code which divines the implementation name:
|
||||
http://hg.python.org/cpython/file/2f563908ebc5/Lib/platform.py#l1247
|
||||
https://hg.python.org/cpython/file/2f563908ebc5/Lib/platform.py#l1247
|
||||
|
||||
.. [#tag_impl] The original implementation of the cache tag in CPython:
|
||||
http://hg.python.org/cpython/file/2f563908ebc5/Python/import.c#l121
|
||||
* The original implementation of the cache tag in CPython:
|
||||
https://hg.python.org/cpython/file/2f563908ebc5/Python/import.c#l121
|
||||
|
||||
.. [#tests] Examples of implementation-specific handling in test.support:
|
||||
* http://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py#l509
|
||||
* http://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py#l1246
|
||||
* http://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py#l1252
|
||||
* http://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py#l1275
|
||||
* Examples of implementation-specific handling in test.support:
|
||||
|
||||
* https://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py#l509
|
||||
* https://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py#l1246
|
||||
* https://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py#l1252
|
||||
* https://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py#l1275
|
||||
|
||||
.. [#os_name] The standard library entry for os.name:
|
||||
http://docs.python.org/3.3/library/os.html#os.name
|
||||
|
||||
.. [#javatest] The use of ``os.name`` as 'java' in the stdlib test suite.
|
||||
http://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py#l512
|
||||
https://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py#l512
|
||||
|
||||
.. [#Alyssa] Alyssa (Nick) Coghlan's proposal for ``sys.implementation.metadata``:
|
||||
https://mail.python.org/pipermail/python-ideas/2012-May/014984.html
|
||||
|
@ -510,23 +505,12 @@ References
|
|||
|
||||
.. _issue #14673: http://bugs.python.org/issue14673
|
||||
|
||||
.. _Lib/test/support.py: http://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py
|
||||
.. _Lib/test/support.py: https://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py
|
||||
|
||||
.. _Python/import.c: http://hg.python.org/cpython/file/2f563908ebc5/Python/import.c
|
||||
.. _Python/import.c: https://hg.python.org/cpython/file/2f563908ebc5/Python/import.c
|
||||
|
||||
|
||||
Copyright
|
||||
=========
|
||||
|
||||
This document has been placed in the public domain.
|
||||
|
||||
|
||||
|
||||
..
|
||||
Local Variables:
|
||||
mode: indented-text
|
||||
indent-tabs-mode: nil
|
||||
sentence-end-double-space: t
|
||||
fill-column: 70
|
||||
coding: utf-8
|
||||
End:
|
||||
|
|
Loading…
Reference in New Issue