Commit 15641925 authored by Georg Brandl's avatar Georg Brandl

Fix advice: call PyType_Ready to fill in ob_type of custom types.

parent fcf3a0c5
...@@ -110,7 +110,7 @@ described here are distributed with the Python sources in the ...@@ -110,7 +110,7 @@ described here are distributed with the Python sources in the
Now your options are: Now your options are:
#. Copy :file:`example.sln` and :file:`example.vcproj`, rename them to #. Copy :file:`example.sln` and :file:`example.vcproj`, rename them to
:file:`spam.\*`, and edit them by hand, or :file:`spam.\*`, and edit them by hand, or
#. Create a brand new project; instructions are below. #. Create a brand new project; instructions are below.
...@@ -179,8 +179,8 @@ constant". This shows up when building DLL under MSVC. Change it to:: ...@@ -179,8 +179,8 @@ constant". This shows up when building DLL under MSVC. Change it to::
and add the following to the module initialization function:: and add the following to the module initialization function::
MyObject_Type.ob_type = &PyType_Type; if (PyType_Ready(&MyObject_Type) < 0)
return NULL;
.. _dynamic-linking: .. _dynamic-linking:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment