Skip to content
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
4 changes: 3 additions & 1 deletion pep-0007.txt
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,12 @@ Code lay-out

* For external functions and variables, we always have a declaration
in an appropriate header file in the "Include" directory, which uses
the ``PyAPI_FUNC()`` macro, like this::
the ``PyAPI_FUNC()`` macro and ``PyAPI_DATA()`` macro, like this::

PyAPI_FUNC(PyObject *) PyObject_Repr(PyObject *);

PyAPI_DATA(PyTypeObject) PySuper_Type;


Naming conventions
==================
Expand Down