components/python/python26/patches/Python26-32-osconf-long.patch
changeset 4984 7145b15b7f0d
parent 4983 db2589571faa
child 4985 eed3576cafd0
--- a/components/python/python26/patches/Python26-32-osconf-long.patch	Tue Oct 20 05:38:14 2015 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-# http://bugs.python.org/issue17964 was fixed in 3.4 but not back-ported so we
-# need this patch for 2.6 .
-
---- Python-2.6.8/Modules/posixmodule.c.orig	2013-09-10 14:48:19.058672610 -0700
-+++ Python-2.6.8/Modules/posixmodule.c	2013-09-10 14:48:49.872618578 -0700
-@@ -8188,7 +8188,7 @@
-     int name;
- 
-     if (PyArg_ParseTuple(args, "O&:sysconf", conv_sysconf_confname, &name)) {
--        int value;
-+        long value;
- 
-         errno = 0;
-         value = sysconf(name);