From 3813a5dbe7d0608965d690d98e1730ad5c8878ff Mon Sep 17 00:00:00 2001 From: Hye-Shik Chang Date: Mon, 13 Oct 2008 08:23:00 +0000 Subject: Introduce two new versions of Python: 2.6 and 3.0rc1 (finally!) Python 2.6 will be the next default python version when enough testings of consumer ports are done. The new "2to3" program is renamed to 2to3-2.6 and 2to3-3.0 for each version, respectively. Repo-copied by: marcus --- lang/python32/files/patch-objects_tupleobject.c | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 lang/python32/files/patch-objects_tupleobject.c (limited to 'lang/python32/files/patch-objects_tupleobject.c') diff --git a/lang/python32/files/patch-objects_tupleobject.c b/lang/python32/files/patch-objects_tupleobject.c deleted file mode 100644 index eb133b6e002c..000000000000 --- a/lang/python32/files/patch-objects_tupleobject.c +++ /dev/null @@ -1,17 +0,0 @@ ---- Objects/tupleobject.c.orig 2006-08-12 18:03:09.000000000 +0100 -+++ Objects/tupleobject.c 2008-08-30 10:16:13.000000000 +0100 -@@ -60,11 +60,12 @@ - Py_ssize_t nbytes = size * sizeof(PyObject *); - /* Check for overflow */ - if (nbytes / sizeof(PyObject *) != (size_t)size || -- (nbytes += sizeof(PyTupleObject) - sizeof(PyObject *)) -- <= 0) -+ (nbytes > PY_SSIZE_T_MAX - sizeof(PyTupleObject) - sizeof(PyObject *))) - { - return PyErr_NoMemory(); - } -+ nbytes += sizeof(PyTupleObject) - sizeof(PyObject *); -+ - op = PyObject_GC_NewVar(PyTupleObject, &PyTuple_Type, size); - if (op == NULL) - return NULL; -- cgit v1.2.3