summaryrefslogtreecommitdiffstats
path: root/Doc/extending
diff options
context:
space:
mode:
authorCAM Gerlach <CAM.Gerlach@Gerlach.CAM>2022-05-10 06:30:32 (GMT)
committerGitHub <noreply@github.com>2022-05-10 06:30:32 (GMT)
commitf1bbcba74f77eff2a4c0881f3d529f3bf0664d40 (patch)
treea18f0871e32ad988c3690b325cc8b6b0f1bd4f5a /Doc/extending
parent7c638e64050778f2e0052ec9f84cd202b8aedfce (diff)
downloadcpython-f1bbcba74f77eff2a4c0881f3d529f3bf0664d40.zip
cpython-f1bbcba74f77eff2a4c0881f3d529f3bf0664d40.tar.gz
cpython-f1bbcba74f77eff2a4c0881f3d529f3bf0664d40.tar.bz2
gh-76773: Update docs mentioning no-longer-supported Windows versions & features (GH-92529)
Diffstat (limited to 'Doc/extending')
-rw-r--r--Doc/extending/windows.rst4
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.
-