From: Guido van Rossum Date: Wed, 11 Sep 1996 23:31:42 +0000 (+0000) Subject: Rationalize MS #ifdefs X-Git-Tag: v1.4~206 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=07886d0e01485f49f02cc973c811e3c16d44d8ef;p=thirdparty%2FPython%2Fcpython.git Rationalize MS #ifdefs --- diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index 4d6a6f9b1750..5f5b859e34b2 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -924,7 +924,7 @@ Tkapp_CreateFileHandler (self, args) data = Py_BuildValue ("(OO)", func, file); #if (TK_MAJOR_VERSION*1000 + TK_MINOR_VERSION) >= 4001 -#ifdef NT +#ifdef MS_WINDOWS /* We assume this is a socket... */ tfile = Tcl_GetFile((ClientData)id, TCL_WIN_SOCKET); #else @@ -959,7 +959,7 @@ Tkapp_DeleteFileHandler (self, args) return NULL; #if (TK_MAJOR_VERSION*1000 + TK_MINOR_VERSION) >= 4001 -#ifdef NT +#ifdef MS_WINDOWS /* We assume this is a socket... */ tfile = Tcl_GetFile((ClientData)id, TCL_WIN_SOCKET); #else