summaryrefslogtreecommitdiff
path: root/lang/python31/files/patch-objects_tupleobject.c
diff options
context:
space:
mode:
authorHye-Shik Chang <perky@FreeBSD.org>2008-10-13 08:23:00 +0000
committerHye-Shik Chang <perky@FreeBSD.org>2008-10-13 08:23:00 +0000
commit3813a5dbe7d0608965d690d98e1730ad5c8878ff (patch)
treec6bc50f8d593ff6f8b9f46161b022682d1e508cd /lang/python31/files/patch-objects_tupleobject.c
parent- Fix synergy crashing on copy and paste from Fedora (diff)
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
Diffstat (limited to 'lang/python31/files/patch-objects_tupleobject.c')
-rw-r--r--lang/python31/files/patch-objects_tupleobject.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/lang/python31/files/patch-objects_tupleobject.c b/lang/python31/files/patch-objects_tupleobject.c
deleted file mode 100644
index eb133b6e002c..000000000000
--- a/lang/python31/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;