From 164be77ef8c42355601b652648fe722d3e40644c Mon Sep 17 00:00:00 2001 From: Kent Slaney Date: Fri, 7 Jun 2024 16:07:24 -0700 Subject: [PATCH] move footnote to footnotes section --- README.rst | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/README.rst b/README.rst index 4ff2b0b7..ef7e5b54 100644 --- a/README.rst +++ b/README.rst @@ -172,14 +172,6 @@ libmc is friendly to gevent. Read ``tests/shabby/gevent_issue.py`` for details. ``libmc.ThreadedClient`` and ``libmc.ClientPool`` are not compatible. [#]_ -.. [#] In order to use a single executable for multiple greenlet contexts, - gevent has to `copy thread memory - `__ - to and from the same stack space. This doesn't affect Python references, - which are handed off through gevent, but makes it impossible for shared - libraries to pass memory addresses across greenlets, which is required for - the worker pool. - **Notice:** ``gevent.monkey.patch_all()`` will override @@ -239,6 +231,18 @@ Documentation https://github.com/douban/libmc/wiki +Footnotes +--------- + +.. [#] In order to use a single executable for multiple greenlet contexts, + gevent has to `copy thread memory + `__ + to and from the same stack space. This doesn't affect Python references, + which are handed off through gevent, but makes it impossible for shared + libraries to pass memory addresses across greenlets, which is required for + the worker pool. + + LICENSE -------