diff options
author | Tim Peters <tim.peters@gmail.com> | 2000-09-04 07:34:06 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2000-09-04 07:34:06 (GMT) |
commit | 50699215f8120afd2c5649161491ac899e8c8e44 (patch) | |
tree | cfd13b3c4dbab2b5b97ccb20677fb14fdf02ab07 /PCbuild | |
parent | b89f41efbc28f1021323ec74f2ec40cc372a0862 (diff) | |
download | cpython-50699215f8120afd2c5649161491ac899e8c8e44.zip cpython-50699215f8120afd2c5649161491ac899e8c8e44.tar.gz cpython-50699215f8120afd2c5649161491ac899e8c8e44.tar.bz2 |
test_mmap wrote null bytes into its expected-output file; this caused me to
waste an hour tracking down an illusion; repaired it; writing/reading non-
printable characters (except \t\r\n) into/outof text-mode files ain't
defined x-platform, and at least some Windows text editors do surprising
things in their presence.
Also added a by-hand "build humber" to the Windows build, in an approximation
of Python's inexplicable BUILD-number Unix scheme. I'll try to remember to
increment it each time I make a Windows installer available. It's starting
at 2, cuz I've put 2 installers out so far (both with BUILD #0).
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/python20.dsp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/PCbuild/python20.dsp b/PCbuild/python20.dsp index 24ebc9a..d3281d3 100644 --- a/PCbuild/python20.dsp +++ b/PCbuild/python20.dsp @@ -694,8 +694,12 @@ SOURCE=..\Modules\getbuildinfo.c !IF "$(CFG)" == "python20 - Win32 Release"
+# ADD CPP /D BUILD=2
+
!ELSEIF "$(CFG)" == "python20 - Win32 Debug"
+# ADD CPP /D BUILD=2
+
!ELSEIF "$(CFG)" == "python20 - Win32 Alpha Debug"
!ELSEIF "$(CFG)" == "python20 - Win32 Alpha Release"
|