diff --git a/pep-0467.txt b/pep-0467.txt index 9964a3d55c0..4ca578a662f 100644 --- a/pep-0467.txt +++ b/pep-0467.txt @@ -128,7 +128,7 @@ Python 2 ``str``) was as simple as:: >>> str(123) '123' - + With Python 3 that became the more verbose:: >>> b'%d' % 123 @@ -236,18 +236,12 @@ of this PEP. References ========== -.. [1] Initial March 2014 discussion thread on python-ideas - (https://mail.python.org/pipermail/python-ideas/2014-March/027295.html) -.. [2] Guido's initial feedback in that thread - (https://mail.python.org/pipermail/python-ideas/2014-March/027376.html) -.. [3] Issue proposing moving zero-initialised sequences to a dedicated API - (http://bugs.python.org/issue20895) -.. [4] Issue proposing to use calloc() for zero-initialised binary sequences - (http://bugs.python.org/issue21644) -.. [5] August 2014 discussion thread on python-dev - (https://mail.python.org/pipermail/python-ideas/2014-March/027295.html) -.. [6] June 2016 discussion thread on python-dev - (https://mail.python.org/pipermail/python-dev/2016-June/144875.html) +* `Initial March 2014 discussion thread on python-ideas `_ +* `Guido's initial feedback in that thread `_ +* `Issue proposing moving zero-initialised sequences to a dedicated API `_ +* `Issue proposing to use calloc() for zero-initialised binary sequences `_ +* `August 2014 discussion thread on python-dev `_ +* `June 2016 discussion thread on python-dev `_ Copyright