PEP 550: Fix footnotes (#2751)
* PEP 550: Remove orphaned references * PEP 550: Remove redundant emacs metadata * PEP 550: Use plaintext literal block for ASCII diagram * PEP 550: Update links * PEP 550: Clean up link Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM> Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM>
This commit is contained in:
parent
46178be287
commit
0d7637fbfe
34
pep-0550.rst
34
pep-0550.rst
|
@ -818,7 +818,9 @@ Implementation
|
|||
Execution context is implemented as an immutable linked list of
|
||||
logical contexts, where each logical context is an immutable weak key
|
||||
mapping. A pointer to the currently active execution context is
|
||||
stored in the OS thread state::
|
||||
stored in the OS thread state:
|
||||
|
||||
.. code-block:: text
|
||||
|
||||
+-----------------+
|
||||
| | ec
|
||||
|
@ -1695,17 +1697,15 @@ Version History
|
|||
References
|
||||
==========
|
||||
|
||||
.. [1] https://blog.golang.org/context
|
||||
.. [1] https://go.dev/blog/context
|
||||
|
||||
.. [2] https://msdn.microsoft.com/en-us/library/system.threading.executioncontext.aspx
|
||||
.. [2] https://docs.microsoft.com/en-us/dotnet/api/system.threading.executioncontext
|
||||
|
||||
.. [3] https://github.com/numpy/numpy/issues/9444
|
||||
|
||||
.. [4] http://bugs.python.org/issue31179
|
||||
|
||||
.. [5] https://en.wikipedia.org/wiki/Hash_array_mapped_trie
|
||||
|
||||
.. [6] http://blog.higher-order.net/2010/08/16/assoc-and-clojures-persistenthashmap-part-ii.html
|
||||
.. [6] https://blog.higher-order.net/2010/08/16/assoc-and-clojures-persistenthashmap-part-ii.html
|
||||
|
||||
.. [7] https://github.com/1st1/cpython/tree/hamt
|
||||
|
||||
|
@ -1715,16 +1715,6 @@ References
|
|||
|
||||
.. [10] https://gist.github.com/1st1/dbe27f2e14c30cce6f0b5fddfc8c437e
|
||||
|
||||
.. [11] https://github.com/1st1/cpython/tree/pep550
|
||||
|
||||
.. [13] https://github.com/MagicStack/uvloop/blob/master/examples/bench/echoserver.py
|
||||
|
||||
.. [14] https://github.com/MagicStack/pgbench
|
||||
|
||||
.. [15] https://github.com/python/performance
|
||||
|
||||
.. [16] https://gist.github.com/1st1/6b7a614643f91ead3edf37c4451a6b4c
|
||||
|
||||
.. [17] https://mail.python.org/pipermail/python-ideas/2017-August/046752.html
|
||||
|
||||
.. [18] https://mail.python.org/pipermail/python-ideas/2017-August/046772.html
|
||||
|
@ -1749,7 +1739,7 @@ References
|
|||
|
||||
.. [28] https://docs.python.org/3/library/decimal.html#decimal.Context.abs
|
||||
|
||||
.. [29] https://curio.readthedocs.io/en/latest/reference.html#task-local-storage
|
||||
.. [29] https://web.archive.org/web/20170706074739/https://curio.readthedocs.io/en/latest/reference.html#task-local-storage
|
||||
|
||||
.. [30] https://docs.atlassian.com/aiolocals/latest/usage.html
|
||||
|
||||
|
@ -1764,13 +1754,3 @@ 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