11PEP: 421
22Title: Adding sys.implementation
3- Version: $Revision$
4- Last-Modified: $Date$
53Author: Eric Snow <ericsnowcurrently@gmail.com>
64BDFL-Delegate: Barry Warsaw
75Status: Final
86Type: Standards Track
9- Content-Type: text/x-rst
107Created: 26-Apr-2012
118Python-Version: 3.3
129Post-History: 26-Apr-2012
@@ -466,15 +463,12 @@ References
466463 .. [#ironpython ] Feedback from the IronPython developers:
467464 https://mail.python.org/pipermail/ironpython-users/2012-May/015980.html
468465
469- .. [ #dino_viehland_2009 ] (2009) Dino Viehland offers his opinion:
470- https://mail.python.org/pipermail/python-dev/2009-October/092894.html
466+ * (2009) Dino Viehland offers his opinion:
467+ https://mail.python.org/pipermail/python-dev/2009-October/092894.html
471468
472469.. [#jeff_hardy_2012 ] (2012) Jeff Hardy offers his opinion:
473470 https://mail.python.org/pipermail/ironpython-users/2012-May/015981.html
474471
475- .. [#jython ] Feedback from the Jython developers:
476- ???
477-
478472 .. [#frank_wierzbicki_2009 ] (2009) Frank Wierzbicki offers his opinion:
479473 https://mail.python.org/pipermail/python-dev/2009-October/092974.html
480474
@@ -485,22 +479,23 @@ References
485479 https://mail.python.org/pipermail/pypy-dev/2012-May/009884.html
486480
487481 .. [#guess ] The ``platform `` code which divines the implementation name:
488- http://hg.python.org/cpython/file/2f563908ebc5/Lib/platform.py#l1247
482+ https://hg.python.org/cpython/file/2f563908ebc5/Lib/platform.py#l1247
483+
484+ * The original implementation of the cache tag in CPython:
485+ https://hg.python.org/cpython/file/2f563908ebc5/Python/import.c#l121
489486
490- .. [#tag_impl ] The original implementation of the cache tag in CPython:
491- http://hg.python.org/cpython/file/2f563908ebc5/Python/import.c#l121
487+ * Examples of implementation-specific handling in test.support:
492488
493- .. [#tests ] Examples of implementation-specific handling in test.support:
494- * http://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py#l509
495- * http://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py#l1246
496- * http://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py#l1252
497- * http://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py#l1275
489+ * https://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py#l509
490+ * https://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py#l1246
491+ * https://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py#l1252
492+ * https://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py#l1275
498493
499494.. [#os_name ] The standard library entry for os.name:
500495 http://docs.python.org/3.3/library/os.html#os.name
501496
502497 .. [#javatest ] The use of ``os.name `` as 'java' in the stdlib test suite.
503- http ://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py#l512
498+ https ://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py#l512
504499
505500 .. [#Alyssa ] Alyssa (Nick) Coghlan's proposal for ``sys.implementation.metadata ``:
506501 https://mail.python.org/pipermail/python-ideas/2012-May/014984.html
@@ -510,23 +505,12 @@ References
510505
511506 .. _issue #14673 : http://bugs.python.org/issue14673
512507
513- .. _Lib/test/support.py : http ://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py
508+ .. _Lib/test/support.py : https ://hg.python.org/cpython/file/2f563908ebc5/Lib/test/support.py
514509
515- .. _Python/import.c : http ://hg.python.org/cpython/file/2f563908ebc5/Python/import.c
510+ .. _Python/import.c : https ://hg.python.org/cpython/file/2f563908ebc5/Python/import.c
516511
517512
518513Copyright
519514=========
520515
521516This document has been placed in the public domain.
522-
523-
524-
525- ..
526- Local Variables:
527- mode: indented-text
528- indent-tabs-mode: nil
529- sentence-end-double-space: t
530- fill-column: 70
531- coding: utf-8
532- End:
0 commit comments