Index: /pyyaml/tags/3.08/setup.cfg
===================================================================
--- /pyyaml/tags/3.08/setup.cfg	(revision 335)
+++ /pyyaml/tags/3.08/setup.cfg	(revision 340)
@@ -29,12 +29,6 @@
 
 # The following options are used to build PyYAML Windows installer
-# for Python 2.6 on my PC:
+# for Python 2.6 and Python 3.0 on my PC:
 #include_dirs=../../../libyaml/tags/0.1.2/include
 #library_dirs=../../../libyaml/tags/0.1.2/win32/vs2008/output/release/lib
 #define=YAML_DECLARE_STATIC
-
-# The following options are used to build PyYAML Windows installer
-# for Python 3.0 on my PC:
-#include_dirs=../../../libyaml/tags/0.1.2/include
-#library_dirs=../../../libyaml/tags/0.1.2/win32/vs2008/output/release/lib
-#define=YAML_DECLARE_STATIC
Index: /pyyaml/tags/3.08/ext/_yaml.h
===================================================================
--- /pyyaml/tags/3.08/ext/_yaml.h	(revision 335)
+++ /pyyaml/tags/3.08/ext/_yaml.h	(revision 340)
@@ -14,2 +14,10 @@
 
 #endif
+
+#ifdef _MSC_VER	/* MS Visual C++ 6.0 */
+#if _MSC_VER == 1200
+
+#define PyLong_FromUnsignedLongLong(z)	PyInt_FromLong(i)
+
+#endif
+#endif
