diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-05-10 09:28:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-10 09:28:22 (GMT) |
commit | dd0e8a62df8be2a09ef6035b4c92bd9a68a7b918 (patch) | |
tree | 89f0e95b7414c7379c4fb9d9567b4ca62dd7a98f /Doc/extending | |
parent | 7954b664d4c5db56ec28da57e783186f4d713517 (diff) | |
download | cpython-dd0e8a62df8be2a09ef6035b4c92bd9a68a7b918.zip cpython-dd0e8a62df8be2a09ef6035b4c92bd9a68a7b918.tar.gz cpython-dd0e8a62df8be2a09ef6035b4c92bd9a68a7b918.tar.bz2 |
[3.10] gh-76773: Update docs mentioning no-longer-supported Windows versions & features (GH-92529) (GH-92609)
(cherry picked from commit f1bbcba74f77eff2a4c0881f3d529f3bf0664d40)
Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM>
Automerge-Triggered-By: GH:serhiy-storchaka
Diffstat (limited to 'Doc/extending')
-rw-r--r-- | Doc/extending/windows.rst | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Doc/extending/windows.rst b/Doc/extending/windows.rst index c7b92c6..28d0350 100644 --- a/Doc/extending/windows.rst +++ b/Doc/extending/windows.rst @@ -106,8 +106,7 @@ Using DLLs in Practice Windows Python is built in Microsoft Visual C++; using other compilers may or -may not work (though Borland seems to). The rest of this section is MSVC++ -specific. +may not work. The rest of this section is MSVC++ specific. When creating DLLs in Windows, you must pass :file:`pythonXY.lib` to the linker. To build two DLLs, spam and ni (which uses C functions found in spam), you could @@ -134,4 +133,3 @@ Developer Studio will throw in a lot of import libraries that you do not really need, adding about 100K to your executable. To get rid of them, use the Project Settings dialog, Link tab, to specify *ignore default libraries*. Add the correct :file:`msvcrtxx.lib` to the list of libraries. - |