Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove mentions of Windows (Server and Platform SDK) 2003 #2451

Merged
merged 1 commit into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ win32/src/win32service_messages.h
win32/src/win32evtlog_messages.h
isapi/src/pyISAPI_messages.h

# VC2003 and up project files
# Visual Studio project files
*.sln
*.suo
*.vcproj
Expand Down
5 changes: 1 addition & 4 deletions adodbapi/quick_reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,7 @@ where "click to buy" versions of Office have been removed, but are still
blocking installation of the redistributable provider.

- To use any ODBC driver from 64 bit Python, you also need the MSDASQL
provider. It is shipped with Server 2008, and Vista and later. For
Server 2003, You will have to [download
it](http://www.microsoft.com/en-us/download/details.aspx?id=20065) [from
Microsoft.]{lang="en-US"}
provider. It is shipped with Server 2008, and Vista and later.

- MySQL driver <http://dev.mysql.com/downloads/connector/odbc/>
or MariaDB driver <https://downloads.mariadb.org/connector-odbc/>
Expand Down
7 changes: 0 additions & 7 deletions com/win32com/src/PyGatewayBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,6 @@ extern const GUID IID_IInternalUnwrapPythonObject = {
extern PyObject *g_obMissing;

#include <malloc.h>
// When building with the 2003 Platform SDK 64-bit compiloer, _MSC_VER is 1400,
// but _malloca is not defined
// #if _MSC_VER < 1400
#ifndef _malloca
// _malloca is the new 'safe' one
#define _malloca _alloca
#endif

// Internal ErrorUtil helpers we reach in for.
// Free the strings from an excep-info.
Expand Down