forked from python/peps
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PEP 421: Fix Sphinx reference warnings (python#4150)
- Loading branch information
1 parent
87f4173
commit d38c76f
Showing
1 changed file
with
14 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
PEP: 421 | ||
Title: Adding sys.implementation | ||
Version: $Revision$ | ||
Last-Modified: $Date$ | ||
Author: Eric Snow <[email protected]> | ||
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 | ||
* The original implementation of the cache tag in CPython: | ||
https://hg.python.org/cpython/file/2f563908ebc5/Python/import.c#l121 | ||
|
||
.. [#tag_impl] The original implementation of the cache tag in CPython: | ||
http://hg.python.org/cpython/file/2f563908ebc5/Python/import.c#l121 | ||
* Examples of implementation-specific handling in test.support: | ||
|
||
.. [#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 | ||
* 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: |