Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcf3a0c commit 1564192Copy full SHA for 1564192
1 file changed
Doc/extending/windows.rst
@@ -110,7 +110,7 @@ described here are distributed with the Python sources in the
110
Now your options are:
111
112
#. Copy :file:`example.sln` and :file:`example.vcproj`, rename them to
113
- :file:`spam.\*`, and edit them by hand, or
+ :file:`spam.\*`, and edit them by hand, or
114
115
#. Create a brand new project; instructions are below.
116
@@ -179,8 +179,8 @@ constant". This shows up when building DLL under MSVC. Change it to::
179
180
and add the following to the module initialization function::
181
182
- MyObject_Type.ob_type = &PyType_Type;
183
-
+ if (PyType_Ready(&MyObject_Type) < 0)
+ return NULL;
184
185
186
.. _dynamic-linking:
0 commit comments