Issue #5793: rationalize isdigit / isalpha / tolower, etc. Will port to py3k. Should fix Windows buildbot errors.
diff --git a/PC/VC6/pythoncore.dsp b/PC/VC6/pythoncore.dsp
index 38d450b..2cae542 100644
--- a/PC/VC6/pythoncore.dsp
+++ b/PC/VC6/pythoncore.dsp
@@ -603,6 +603,10 @@
# End Source File
# Begin Source File
+SOURCE=..\..\Python\pyctype.c
+# End Source File
+# Begin Source File
+
SOURCE=..\..\Python\pyfpe.c
# End Source File
# Begin Source File
diff --git a/PC/VS7.1/pythoncore.vcproj b/PC/VS7.1/pythoncore.vcproj
index 672db12..2ee7555 100644
--- a/PC/VS7.1/pythoncore.vcproj
+++ b/PC/VS7.1/pythoncore.vcproj
@@ -722,6 +722,9 @@
RelativePath="..\..\Python\pyarena.c">
</File>
<File
+ RelativePath="..\..\Python\pyctype.c">
+ </File>
+ <File
RelativePath="..\..\Python\pyfpe.c">
</File>
<File
diff --git a/PC/VS8.0/pythoncore.vcproj b/PC/VS8.0/pythoncore.vcproj
index e0a5337..db105ed 100644
--- a/PC/VS8.0/pythoncore.vcproj
+++ b/PC/VS8.0/pythoncore.vcproj
@@ -851,6 +851,10 @@
>
</File>
<File
+ RelativePath="..\..\Include\pyctype.h"
+ >
+ </File>
+ <File
RelativePath="..\..\Include\pydebug.h"
>
</File>
@@ -1743,6 +1747,10 @@
>
</File>
<File
+ RelativePath="..\..\Python\pyctype.c"
+ >
+ </File>
+ <File
RelativePath="..\..\Python\pyfpe.c"
>
</File>
diff --git a/PC/os2emx/Makefile b/PC/os2emx/Makefile
index 82d548e..09ed1a7 100644
--- a/PC/os2emx/Makefile
+++ b/PC/os2emx/Makefile
@@ -362,6 +362,7 @@
Python/mystrtoul.c \
Python/peephole.c \
Python/pyarena.c \
+ Python/pyctype.c \
Python/pyfpe.c \
Python/pymath.c \
Python/pystate.c \