8000 API: Default to hidden visibility for API tables by seberg · Pull Request #26103 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

API: Default to hidden visibility for API tables #26103

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

Merged
merged 7 commits into from
Apr 30, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
DOC: Two more fixes...
  • Loading branch information
seberg committed Mar 22, 2024
commit b48d3bfeb84fa0fba42ac1165a3e21ce0f8f8924
4 changes: 2 additions & 2 deletions doc/source/reference/c-api/array.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3834,7 +3834,7 @@ For the typical Python project, multiple C or C++ files will be compiled into
a single shared object (the Python C-module) and ``PyArray_ImportNumPyAPI()``
should be called inside it's module initialization.

When you have a single C-file, this will consist of::
When you have a single C-file, this will consist of:

.. code-block:: c

Expand Down Expand Up @@ -3917,7 +3917,7 @@ are defined:
by other files which are linked.
* If ``NO_IMPORT_ARRAY`` is defined, the table is declared as
``extern void **``, meaning that it must be linked to a file which does not
use ``NO_IMPORT_ARRAY`.
use ``NO_IMPORT_ARRAY``.

The ``PY_ARRAY_UNIQUE_SYMBOL`` mechanism additionally mangles the names to
avoid conflicts.
Expand Down
0