diff options
author | Hye-Shik Chang <perky@FreeBSD.org> | 2008-10-13 08:23:00 +0000 |
---|---|---|
committer | Hye-Shik Chang <perky@FreeBSD.org> | 2008-10-13 08:23:00 +0000 |
commit | 3813a5dbe7d0608965d690d98e1730ad5c8878ff (patch) | |
tree | c6bc50f8d593ff6f8b9f46161b022682d1e508cd /lang/python32/files/patch-Modules-zlibmodule.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
Notes
Notes:
svn path=/head/; revision=221521
Diffstat (limited to 'lang/python32/files/patch-Modules-zlibmodule.c')
-rw-r--r-- | lang/python32/files/patch-Modules-zlibmodule.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lang/python32/files/patch-Modules-zlibmodule.c b/lang/python32/files/patch-Modules-zlibmodule.c deleted file mode 100644 index 7875a40ada7c..000000000000 --- a/lang/python32/files/patch-Modules-zlibmodule.c +++ /dev/null @@ -1,13 +0,0 @@ ---- Modules/zlibmodule.c.orig 2008-04-25 01:47:26.000000000 +0200 -+++ Modules/zlibmodule.c 2008-04-25 01:48:17.000000000 +0200 -@@ -774,6 +774,10 @@ - - if (!PyArg_ParseTuple(args, "|i:flush", &length)) - return NULL; -+ if (length <= 0) { -+ PyErr_SetString(PyExc_ValueError, "length must be greater than zero"); -+ return NULL; -+ } - if (!(retval = PyString_FromStringAndSize(NULL, length))) - return NULL; - |