1
1
PEP: 421
2
2
Title: Adding sys.implementation
3
- Version: $Revision$
4
- Last-Modified: $Date$
5
3
Author: Eric Snow <
[email protected] >
6
4
BDFL-Delegate: Barry Warsaw
7
5
Status: Final
8
6
Type: Standards Track
9
- Content-Type: text/x-rst
10
7
Created: 26-Apr-2012
11
8
Python-Version: 3.3
12
9
Post-History: 26-Apr-2012
@@ -466,15 +463,12 @@ References
466
463
.. [#ironpython ] Feedback from the IronPython developers:
467
464
https://mail.python.org/pipermail/ironpython-users/2012-May/015980.html
468
465
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
471
468
472
469
.. [#jeff_hardy_2012 ] (2012) Jeff Hardy offers his opinion:
473
470
https://mail.python.org/pipermail/ironpython-users/2012-May/015981.html
474
471
475
- .. [#jython ] Feedback from the Jython developers:
476
- ???
477
-
478
472
.. [#frank_wierzbicki_2009 ] (2009) Frank Wierzbicki offers his opinion:
479
473
https://mail.python.org/pipermail/python-dev/2009-October/092974.html
480
474
@@ -485,22 +479,23 @@ References
485
479
https://mail.python.org/pipermail/pypy-dev/2012-May/009884.html
486
480
487
481
.. [#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
489
486
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:
492
488
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
498
493
499
494
.. [#os_name ] The standard library entry for os.name:
500
495
http://docs.python.org/3.3/library/os.html#os.name
501
496
502
497
.. [#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
504
499
505
500
.. [#Alyssa ] Alyssa (Nick) Coghlan's proposal for ``sys.implementation.metadata ``:
506
501
https://mail.python.org/pipermail/python-ideas/2012-May/014984.html
@@ -510,23 +505,12 @@ References
510
505
511
506
.. _issue #14673 : http://bugs.python.org/issue14673
512
507
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
514
509
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
516
511
517
512
518
513
Copyright
519
514
=========
520
515
521
516
This 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