Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PEP 550: Fix footnotes #2751

Merged
merged 5 commits into from
Aug 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 7 additions & 27 deletions pep-0550.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand All @@ -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
Expand All @@ -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

Expand All @@ -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: