[Patches] Windows Python project file hosed?

Mark Hammond mhammond@skippinet.com.au
Fri, 2 Jun 2000 10:16:12 +1000


Im not sure what happened, but the patch for "exceptions.c" had all its
case screwed up, and MSVC refused to load the project for me.  This solves
the problem.

diff -r1.4 python16.dsp
545c545
< !if  "$(cfg)" == "python16 - win32 release"
---
> !IF  "$(CFG)" == "python16 - Win32 Release"
547c547
< !elseif  "$(cfg)" == "python16 - win32 debug"
---
> !ELSEIF  "$(CFG)" == "python16 - Win32 Debug"
549c549
< !elseif  "$(cfg)" == "python16 - win32 alpha debug"
---
> !ELSEIF  "$(CFG)" == "python16 - Win32 Alpha Debug"
551c551
< !elseif  "$(cfg)" == "python16 - win32 alpha release"
---
> !ELSEIF  "$(CFG)" == "python16 - Win32 Alpha Release"
553c553
< !endif
---
> !ENDIF
555,556c555,556
< # end source file
< # begin source file
---
> # End Source File
> # Begin Source File


Release info:

I confirm that, to the best of my knowledge and belief, this contribution
is free of any claims of third parties under copyright, patent or other
rights or interests ("claims").  To the extent that I have any such claims,
I hereby grant to CNRI a nonexclusive, irrevocable, royalty-free, worldwide
license to reproduce, distribute, perform and/or display publicly, prepare
derivative versions, and otherwise use this contribution as part of the
Python software and its related documentation, or any derivative versions
thereof, at no cost to CNRI or its licensed users, and to authorize others
to do so.

I acknowledge that CNRI may, at its sole discretion, decide whether or not
to incorporate this contribution in the Python software and its related
documentation.  I further grant CNRI permission to use my name and other
identifying information provided to CNRI by me for use in connection with
the Python software and its related documentation.

Mark.