summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorda-woods <dw-git@d-woods.co.uk>2022-06-26 11:42:31 +0100
committerGitHub <noreply@github.com>2022-06-26 11:42:31 +0100
commit530e370ff3d4d43e1969dcc821f65bf33a99f252 (patch)
tree5ca657bd428b6a549d91fd07b3da81403872dc53
parent9fb8fae9295a9fa689bfe54a00f1f39642822d7c (diff)
downloadcython-530e370ff3d4d43e1969dcc821f65bf33a99f252.tar.gz
Docs: don't say cdef functions exist in module dict (#4865)
Patch is against 0.29.x branch (to fix both versions of the documentation).
-rw-r--r--docs/src/userguide/sharing_declarations.rst7
1 files changed, 0 insertions, 7 deletions
diff --git a/docs/src/userguide/sharing_declarations.rst b/docs/src/userguide/sharing_declarations.rst
index 57f41e38d..7c2a49e21 100644
--- a/docs/src/userguide/sharing_declarations.rst
+++ b/docs/src/userguide/sharing_declarations.rst
@@ -166,13 +166,6 @@ example:
.. literalinclude:: ../../examples/userguide/sharing_declarations/spammery.pyx
-.. note::
-
- When a module exports a C function in this way, an object appears in the
- module dictionary under the function's name. However, you can't make use of
- this object from Python, nor can you use it from Cython using a normal import
- statement; you have to use :keyword:`cimport`.
-
.. _sharing_extension_types:
Sharing Extension Types