From 1d18bb4fff9ca7e0fca8452b1874fe1f58ffca6f Mon Sep 17 00:00:00 2001 From: Hye-Shik Chang Date: Mon, 9 Oct 2006 14:29:18 +0000 Subject: - Update the main python version to 2.5. - Now, lang/python is just a meta-port which depends on lang/python25. - And all versions of Python ports have short version identifier in its package name; python25-2.5, python24-2.4.3 and etc. - Also you must upgrade all python modules after lang/python updated, cd /usr/ports/lang/python && make upgrade-site-packages - Give maintainership of Python ports to the new python@ group which includes me, alexbl@ and others. --- lang/python/files/patch-Python::ceval.c | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 lang/python/files/patch-Python::ceval.c (limited to 'lang/python/files/patch-Python::ceval.c') diff --git a/lang/python/files/patch-Python::ceval.c b/lang/python/files/patch-Python::ceval.c deleted file mode 100644 index 057d4b6a066e..000000000000 --- a/lang/python/files/patch-Python::ceval.c +++ /dev/null @@ -1,16 +0,0 @@ ---- Python/ceval.c.orig Wed Nov 24 03:06:08 2004 -+++ Python/ceval.c Wed Dec 1 22:29:37 2004 -@@ -414,8 +414,11 @@ - - /* The interpreter's recursion limit */ - --static int recursion_limit = 1000; --int _Py_CheckRecursionLimit = 1000; -+#ifndef PYTHON_DEFAULT_RECURSION_LIMIT -+#define PYTHON_DEFAULT_RECURSION_LIMIT 1000 -+#endif -+static int recursion_limit = PYTHON_DEFAULT_RECURSION_LIMIT; -+int _Py_CheckRecursionLimit = PYTHON_DEFAULT_RECURSION_LIMIT; - - int - Py_GetRecursionLimit(void) -- cgit v1.2.3