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/python27/files/patch-modules_almodule.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/python27/files/patch-modules_almodule.c')
-rw-r--r-- | lang/python27/files/patch-modules_almodule.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lang/python27/files/patch-modules_almodule.c b/lang/python27/files/patch-modules_almodule.c deleted file mode 100644 index 8e3b9b11380d..000000000000 --- a/lang/python27/files/patch-modules_almodule.c +++ /dev/null @@ -1,14 +0,0 @@ ---- Modules/almodule.c.orig 2006-09-25 07:53:42.000000000 +0100 -+++ Modules/almodule.c 2008-08-30 10:39:43.000000000 +0100 -@@ -1633,9 +1633,11 @@ - if (nvals < 0) - goto cleanup; - if (nvals > setsize) { -+ ALvalue *old_return_set = return_set; - setsize = nvals; - PyMem_RESIZE(return_set, ALvalue, setsize); - if (return_set == NULL) { -+ return_set = old_return_set; - PyErr_NoMemory(); - goto cleanup; - } |