diff options
author | Daniel Stutzbach <daniel@stutzbachenterprises.com> | 2010-09-14 16:02:01 (GMT) |
---|---|---|
committer | Daniel Stutzbach <daniel@stutzbachenterprises.com> | 2010-09-14 16:02:01 (GMT) |
commit | 38615993b0b13729cc2afaa69686f5bff17547c4 (patch) | |
tree | b6a8682cdddd79de366568a02a988ceeb0119c63 /Doc/extending | |
parent | a468adc76d7e946b073579b783b246eb5e53850e (diff) | |
download | cpython-38615993b0b13729cc2afaa69686f5bff17547c4.zip cpython-38615993b0b13729cc2afaa69686f5bff17547c4.tar.gz cpython-38615993b0b13729cc2afaa69686f5bff17547c4.tar.bz2 |
Remove pointers to a FAQ entry that no longer exists. Incorporate some text from the old FAQ into the docs
Diffstat (limited to 'Doc/extending')
-rw-r--r-- | Doc/extending/windows.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/extending/windows.rst b/Doc/extending/windows.rst index 8d1986f..6733666 100644 --- a/Doc/extending/windows.rst +++ b/Doc/extending/windows.rst @@ -171,7 +171,9 @@ If your module creates a new type, you may have trouble with this line:: PyVarObject_HEAD_INIT(&PyType_Type, 0) -Change it to:: +Static type object initializers in extension modules may cause +compiles to fail with an error message like "initializer not a +constant". This shows up when building DLL under MSVC. Change it to:: PyVarObject_HEAD_INIT(NULL, 0) @@ -179,8 +181,6 @@ and add the following to the module initialization function:: MyObject_Type.ob_type = &PyType_Type; -Refer to section 3 of the `Python FAQ <http://www.python.org/doc/faq>`_ for -details on why you must do this. .. _dynamic-linking: |